A384361 Consecutive internal states of the linear congruential pseudo-random number generator of the HP 48 series calculators when started at 999500333083533.
999500333083533, 529199358633911, 43582181444437, 294922982088079, 41089642444893, 284830972469031, 786870433805477, 40703079813759, 869103111377453, 156083179654551, 561556952003317, 315753873725039, 722319935785213, 518159379358471, 201897051493957, 715330849773919
Offset: 1
References
- The initial 999500333083533 seed is the one used by the calculators after a memory clean; successive executions of the RAND command give the terms of this sequence (divided by 10^15 and truncated to 12 significant digits).
- See links for more information.
Links
- Paolo Xausa, Table of n, a(n) for n = 1..10000
- John Meyers, Random thoughts on HP48 random functions, comp.sys.hp48 Google group, 1997.
- Steve VanDevender and Detlef Mueller, How RAND Works, hpcalc.org, 1992.
- Index entries for sequences related to pseudo-random numbers.
Crossrefs
Programs
-
Mathematica
NestList[Mod[2851130928467*#, 10^15] &, 999500333083533, 15]
Formula
a(1) = 999500333083533; for n > 1, a(n) = 2851130928467*a(n-1) mod 10^15.
Comments