I have tried to make a pseudo Random Number Generator and generated 10000 numbers. I want to determine whether there exists a cycle in it? With my logic, there could be a cycle of maximum length (INT_MAX)**15
- generating and testing till that value is kind of not feasible. So, is there a way to recognize with N generated numbers(sufficiently large - 10007 numbers) to estimate what length of cycle will be there?
Possibly in R?