This 2 thing for random numbers might come from fact that 2 is most used lowest prime number factoring the most numbers.
Only one even prime and yet it factors 1/2 all numbers >= sum of all the numbers with odd prime as lowest factor.
The “2 thing” is just because you have a repeating list in a value of a power of 2.
Here’s a question: With a list of 16 repeating values, how many do you have to draw to repeat the list perfectly, if you draw 1 at a time? 2 at a time? 3 at a time? N at a time?
If you draw one at a time, after 16 numbers, you repeat perfectly. (0123456789ABCDEF.... 0123456789ABCDEF...)
If you draw 2 at a time, after 16 numbers, you repeat perfectly. (01,23,45,67,89,AB,CD,EF... 01,23,45...)
If you draw 3 at a time, it takes 48 numbers to repeat your original pattern perfectly. (012,345,678,9AB,CDE,F01... 234,567,89A,BCD,EF0... 123,456,789,ABC, DEF... 012,345,678...)
Your repeat interval is the Lowest Common Denominator of the number you’re drawing and the number in your sequence. It’s more obvious when dealing with this “2 thing” because you have the smallest possible repetition iteration, but it’s going to end up repeating perfectly no matter what, in the end.