List Generator

@bits = 1, 2, 4, 8 ... 1024

Which is the same as

@bits = 2⁰, 2¹, 2², 2³ ... 2¹⁰

Or you could always enter it as

@bits = 2**0, 2**1, 2**2, 2**3 ... 2**10