A384547 Consecutive states of the linear congruential pseudo-random number generator 1749966429*s mod 2^32 when started at s=1.
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
Links
- Sean A. Irvine, Table of n, a(n) for n = 1..10000
- George S. Fishman, Multiplicative Congruential Random Number Generators with Modulus 2^beta: An Exhaustive Analysis for beta = 32 and a Partial Analysis for beta = 48, Math. Comp., 54, 189 (1990), 331-344.
- Index entries for sequences related to pseudo-random numbers.
Programs
-
Mathematica
NestList[Mod[1749966429*#, 2^32] &, 1, 50] (* Paolo Xausa, Jun 09 2025 *)
Formula
a(n) = 1749966429 * a(n-1) mod 2^32.
Comments