I've been reading a bit about pseudo-random number generators lately. My understanding is that they generate numbers that seem random for all practical purposes but they are actually just really big sets of numbers that are cyclic.
So let's say we have an infinite set of pseudo-random numbers, how can you show that it is cyclic?
Being cyclic is repeating certain mode. Like 1,2,3,4,1,2,3,4,... The algorithm that generates series will define if the number sequence is cyclic.
But do you think 1,2,2,3,3,4,4,5,... is also cyclic? Maybe if we can tell the number in a specific position based on some current data, we will think it is cyclic.