[go: up one dir, main page]

login
A221561
Consecutive values produced by the C++ ranlux24 random number generator with the default seed (19780503).
6
15039276, 16323925, 14283486, 7150092, 68089, 8584138, 4918023, 11368221, 8644539, 8342712, 3458016, 6733135, 8443170, 1196392, 3446939, 449678, 5065508, 4516318, 9837863, 7025236, 16004084, 14417659, 2735901, 15059233, 15707865, 11839529, 7081334, 4448725
OFFSET
1,1
COMMENTS
The ranlux24 generator takes the first 23 values from each block of 223 values of ranlux24_base (A221559).
PROG
(C++)
#include <iostream>
#include <random>
void A221561(int max)
{
std::ranlux24 gen;
for (int i = 1; i <= max; ++i)
std::cout << i << ' ' << gen() << '\n';
}
CROSSREFS
KEYWORD
nonn
AUTHOR
Eric M. Schmidt, Jan 20 2013
STATUS
approved