Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A221560
Consecutive values produced by the C++ ranlux48_base random number generator with the default seed (19780503).
6
23459059301164, 28639057539807, 276846226770426, 130971693943559, 84358451161020, 208150879060961, 71914269758754, 242506792212635, 257147515259684, 55344035667239, 280360381592565, 89611811012381, 219047732911470, 228508457719877, 59972785607469, 149388687649005
OFFSET
1,1
COMMENTS
This is a "subtract with carry" generator and is used to define the ranlux48 (A221562) generator.
LINKS
George Marsaglia and Arif Zaman, A New Class of Random Number Generators, Annals of Applied Probability, Volume 1, Number 3 (1991), 462-480.
PROG
(C++)
#include <iostream>
#include <random>
void A221560(int max)
{
std::ranlux48_base 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