A384549 Consecutive states of the linear congruential pseudo-random number generator 2396548189*s mod 2^32 when started at s=1.
1, 2396548189, 919509449, 1367779845, 2816335825, 1549695725, 2552669209, 3864799509, 3766995105, 1875889789, 3641884521, 2200425765, 3499887217, 443512589, 1236253625, 3928047157, 4144624961, 4008543389, 4206061833, 1628763205, 2078398737, 3707176749
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[2396548189*#, 2^32] &, 1, 50] (* Paolo Xausa, Jun 05 2025 *)
Formula
a(n) = 2396548189 * a(n-1) mod 2^32.
Comments