Question on random Integer

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?

This should work, not sure if there’s a better way in BP:

Run it in a loop, of course. You did not include details regarding how the series needs to look like - ascending? Evenly distributed?

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.

255175-capture.png

The above would output eleven elements 0 - 50 with intervals of 5.

Ok i’m satisfy with this for now, thank you !