login
A384548
Consecutive states of the linear congruential pseudo-random number generator 2304580733*s mod 2^32 when started at s=1.
13
1, 2304580733, 2147325193, 811843941, 3633150545, 4276262285, 104296921, 2522567413, 2813021601, 4154426269, 810643369, 2170487173, 1239370225, 1403680429, 823123577, 1141497109, 3667935041, 180813501, 3064991305, 3071014309, 967179665, 74820557, 716721945
OFFSET
1,2
COMMENTS
Periodic with period 2^30.
FORMULA
a(n) = 2304580733 * a(n-1) mod 2^32.
MATHEMATICA
NestList[Mod[2304580733*#, 2^32] &, 1, 50] (* Paolo Xausa, Jun 09 2025 *)
KEYWORD
nonn,easy
AUTHOR
Sean A. Irvine, Jun 02 2025
STATUS
approved