login
A384547
Consecutive states of the linear congruential pseudo-random number generator 1749966429*s mod 2^32 when started at s=1.
13
1, 1749966429, 863268297, 2363076613, 3275540433, 136402157, 1501618201, 1169725205, 2884540577, 4207317117, 3511051113, 3507530533, 1059832433, 716775693, 3646539705, 4015094837, 1012634945, 1877022365, 4142456073, 880777797, 4127613201, 857964845, 1091203929
OFFSET
1,2
COMMENTS
Periodic with period 2^30.
FORMULA
a(n) = 1749966429 * a(n-1) mod 2^32.
MATHEMATICA
NestList[Mod[1749966429*#, 2^32] &, 1, 50] (* Paolo Xausa, Jun 09 2025 *)
KEYWORD
nonn,easy
AUTHOR
Sean A. Irvine, Jun 02 2025
STATUS
approved