All “random” numbers generated by computers aren’t actually random. In reality they form a repeating sequence of “pseudo-random numbers”, which can be longer or shorter, depending on the quality of the number generator.
For example, the PRNG in the 8-bit Sinclair ZX Spectrum computer has a period of 65537, which is 1+2^16. This means that after that many numbers generated, they will always repeat themselves, until you give it a new seed.
Latest Answers