Your psuedo code indicates that you want to do nothing for the first n cycles and then do something every time after that. If that's all you want, just put a greater than comparison operator wired to the iteration terminal of a while loop, wire the other input to a numeric control, and wire the output to a case statement. If what you want is to do something just every nth cycle, it's easy with either a shift register or the Quotient and Remainder function. Using the latter, wire it
s x terminal to the iteration terminal of a while loop. The y input is wired to a numeric control. The remainder output (x-y*floor(x/y)) will cycle 0,1,2..n-1 where n is the value of the numeric control. Do a comparison on the output and wire it to a case statement. I've a
ttached a picture that shows both solutions.