A385102 Consecutive internal states of the linear congruential pseudo-random number generator for Turbo Pascal 3.0 when started at 1.
1, 907633514, 2028239699, 557549500, 4112042149, 3080093198, 3102664695, 1719420512, 3669547337, 1832837298, 1120443547, 3710930180, 2876256749, 2577566550, 2701236543, 1474796456, 2177815185, 2672918010, 2116672995, 3375510092, 2556738357, 14399646
Offset: 1
Links
- Sean A. Irvine, Table of n, a(n) for n = 1..10000
- J. Eichenauer-Herrmann and H. Grothe, Upper bounds for the Beyer ratios of linear congruential generators, J Comp. Appl. Math., 31 1 (1990), 73-80.
- Stephen K. Park and Keith W. Miller, Random number generators: good ones are hard to find, Communications of the ACM, Vol 31, 10 (1988), 192-201.
- Index entries for sequences related to pseudo-random numbers.
Programs
-
Mathematica
NestList[Mod[129# + 907633385, 2^32] &,1,21] (* Stefano Spezia, Jun 18 2025 *)
Formula
a(n) = (129 * a(n-1) + 907633385) mod 2^32.