login
A384568
Consecutive states of the linear congruential pseudo-random number generator for the Hewlett Packard HP-11C when started at 1.
2
1, 2592332694, 9081101567, 5395073420, 8055983053, 5086213266, 6273274859, 9159086632, 8802055385, 7839955918, 6661611031, 9575371524, 9742396197, 1322731850, 9762193283, 8428043296, 9881472689, 954880262, 481952815, 5008545148, 9092360061, 879428354
OFFSET
1,2
COMMENTS
Periodic with period 10^10.
Also used by other Hewlett Packard calculators, such as the HP-15C.
FORMULA
a(n) = (1574352261 * a(n-1) + 1017980433) mod 10^10.
MATHEMATICA
NestList[Mod[1574352261*# + 1017980433, 10^10] &, 1, 50] (* Paolo Xausa, Jun 05 2025 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Sean A. Irvine, Jun 03 2025
STATUS
approved