login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A121491 An historic sequence: Lehmer's linear congruential pseudorandom numbers. 1
47594118, 94664704, 77288171, 77627916, 85442051, 65167154, 98844528, 73424122, 88754790, 41360150, 51283441, 79519132, 28940018, 65620408, 9269369, 13195485, 3496152, 80411496, 49464390, 37680959, 66662049, 33227112, 64223569 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
The linear congruential generator for pseudorandom numbers was proposed by Derrick Henry Lehmer: "Mathematical methods in large-scale computing units," in Proceedings of the 2nd Symposium on Large-Scale Digital Calculating Machinery, Cambridge, MA, 1949, pp. 141-146, Cambridge, MA, 1951, Harvard University Press. The method is often noted as the earliest published method for generating pseudorandom numbers. It is still in use today.
LINKS
FORMULA
Recurrence: X(n+1) = (a*X(n) + c) mod m, Initial Value: X(0)=47594118 Parameters: a=23, c=0, m=100000001
MAPLE
a:= proc(n) option remember; `if`(n=0, 47594118,
irem(23 *a(n-1), 100000001))
end:
seq(a(n), n=0..30); # Alois P. Heinz, Jun 10 2014
CROSSREFS
Sequence in context: A237897 A230756 A022238 * A300568 A210334 A022259
KEYWORD
nonn
AUTHOR
Clark Kimberling, Aug 02 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 8 00:04 EDT 2024. Contains 375749 sequences. (Running on oeis4.)