Hi ! I have this simple question, there is a way to get a series of integers like 5,10, 20, 50 ? A the moment is use the random integer with a max integer.
Is your series based on something? Or you just want multiples of 5?
Thanks! I need thing like this: or 5, or 10, or 20, or 50
Sorry, not getting it. I can see a series relation for 5, 10, 20 (it’s doubling) but 50?
If you just want to double the value, multiply the next loop iteration by 2.

The above would output eleven elements 0 - 50 with intervals of 5.
Ok i’m satisfy with this for now, thank you !
