login
A384707
Consecutive states of the linear congruential pseudo-random number generator 71971110957370*s mod (2^47-115) when started at s=1.
1
1, 71971110957370, 97751155475215, 63928805697070, 118479530220817, 88722126962001, 99358377603253, 117985650682333, 127902272911221, 81288594853390, 117258482513099, 129195671766469, 4907951471492, 76094880219228, 40827677163278, 73675282162193
OFFSET
1,2
COMMENTS
Periodic with period 2^47-116 (0 is only number not in the cycle).
LINKS
Pierre L'Ecuyer, François Blouin, and Raymond Couture, A search for good multiple recursive random number generators, ACM Trans. on Modeling and Computer Simulation (TOMACS), 3, 2 (1993), 87-98.
FORMULA
a(n) = 71971110957370 * a(n-1) mod (2^47-115).
MATHEMATICA
NestList[Mod[71971110957370*#, 2^47 - 115] &, 1, 20] (* Paolo Xausa, Jun 12 2025 *)
CROSSREFS
Cf. A096550-A096561 other pseudo-random number generators.
Sequence in context: A320863 A139575 A391612 * A317874 A185432 A288285
KEYWORD
nonn,easy
AUTHOR
Sean A. Irvine, Jun 07 2025
STATUS
approved