login
A384549
Consecutive states of the linear congruential pseudo-random number generator 2396548189*s mod 2^32 when started at s=1.
13
1, 2396548189, 919509449, 1367779845, 2816335825, 1549695725, 2552669209, 3864799509, 3766995105, 1875889789, 3641884521, 2200425765, 3499887217, 443512589, 1236253625, 3928047157, 4144624961, 4008543389, 4206061833, 1628763205, 2078398737, 3707176749
OFFSET
1,2
COMMENTS
Periodic with period 2^30.
FORMULA
a(n) = 2396548189 * a(n-1) mod 2^32.
MATHEMATICA
NestList[Mod[2396548189*#, 2^32] &, 1, 50] (* Paolo Xausa, Jun 05 2025 *)
KEYWORD
nonn,easy
AUTHOR
Sean A. Irvine, Jun 02 2025
STATUS
approved