A384416 Consecutive internal states of the linear congruential pseudo-random number generator of the HP 48 series calculators when started at 1.
1, 2851130928467, 261097470970089, 335429755623563, 468090732667921, 287888716607107, 194022960814969, 298923961822523, 84062462462241, 191517259514547, 165777802909449, 436661297384683, 996040654470961, 669370619746787, 188023750085529, 201468430854043, 677208350742081
Offset: 1
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] &, 1, 20]
Formula
a(1) = 1; for n > 1, a(n) = 2851130928467*a(n-1) mod 10^15.
Comments