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!)
A221562 Consecutive values produced by the C++ ranlux48 random number generator with the default seed (19780503). 6
23459059301164, 28639057539807, 276846226770426, 130971693943559, 84358451161020, 208150879060961, 71914269758754, 242506792212635, 257147515259684, 55344035667239, 280360381592565, 269312768919532, 29890265102331, 124733844892363, 192577305828636, 73839672853778 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The ranlux48 generator takes the first 11 values from each block of 389 values of ranlux48_base (A221560).
LINKS
PROG
(C++)
#include <iostream>
#include <random>
void A221562(int max)
{
std::ranlux48 gen;
for (int i = 1; i <= max; ++i)
std::cout << i << ' ' << gen() << '\n';
}
CROSSREFS
Sequence in context: A317777 A017544 A221560 * A003851 A003844 A132909
KEYWORD
nonn
AUTHOR
Eric M. Schmidt, Jan 20 2013
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 April 23 23:26 EDT 2024. Contains 371917 sequences. (Running on oeis4.)