A384448 Consecutive states of the linear congruential pseudo-random number generator for the INMOS Transputer when started at 1.
1, 1664525, 389569705, 2940799637, 158984081, 2862450781, 3211393721, 1851289957, 3934847009, 2184914861, 246739401, 1948736821, 2941245873, 4195587069, 4088025561, 980655621, 2001863745, 657792333, 65284841, 1282409429, 3808694225, 2968195997, 2417331449
Offset: 1
Links
- Sean A. Irvine, Table of n, a(n) for n = 1..10000
- GNU Scientific Library, Random Number Generation.
- Index entries for sequences related to pseudo-random numbers.
Programs
-
Mathematica
NestList[Mod[1664525*#, 2^32] &, 1, 50] (* Paolo Xausa, May 30 2025 *)
Formula
a(n) = 1664525 * a(n-1) mod 2^32.
Comments