|
| |
|
|
A152960
|
|
Output of linear congruential generator 134775813 for 32 bit values
|
|
0
| |
|
|
0, 1, 134775814, -596792289, 870078620, 1172187917, -1410233534, 1368768587, 694906232, 1598751577, 1828254910, 352239543, 2039224980, 303092965, -683524998, 256513635, 1259699184, -355259471
(list; graph; refs; listen; history; internal format)
|
|
|
|
OFFSET
| 1,3
|
|
|
COMMENTS
| A widely used pseudo-random number generator, for example all Delphi-Versions until now use it for their "Random" function.
It can be shown that the sequence has full period (its length is 2^32).
|
|
|
LINKS
| Wikipedia, Linear congruential generator
|
|
|
FORMULA
| X[n+1] = (134775813*X[n] + 1) mod (2^32)
|
|
|
PROG
| (Other) //Delphi implementation using it's random() function
var
I: Integer;
begin
Randseed:= 0;
for I:= 1 to 100 do begin
Write(Randseed, ', ');
Random;
end;
end.
|
|
|
CROSSREFS
| Sequence in context: A017625 A122968 A194561 * A034590 A185888 A105297
Adjacent sequences: A152957 A152958 A152959 * A152961 A152962 A152963
|
|
|
KEYWORD
| sign
|
|
|
AUTHOR
| Moritz Franckenstein (maf-soft(AT)gmx.net), Dec 16 2008
|
| |
|
|