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!)
A221557 Consecutive values produced by the C++ mt19937 (Mersenne twister) random number generator with the default seed (5489). 4

%I #10 Sep 10 2015 01:11:27

%S 3499211612,581869302,3890346734,3586334585,545404204,4161255391,

%T 3922919429,949333985,2715962298,1323567403,418932835,2350294565,

%U 1196140740,809094426,2348838239,4264392720,4112460519,4279768804,4144164697,4156218106,676943009,3117454609

%N Consecutive values produced by the C++ mt19937 (Mersenne twister) random number generator with the default seed (5489).

%C The C++ Mersenne twister uses a different seeding procedure than the one in Matsumoto and Nishimura's paper.

%H Eric M. Schmidt, <a href="/A221557/b221557.txt">Table of n, a(n) for n = 1..1000</a>

%H Makoto Matsumoto and Takuji Nishimura, <a href="http://saluc.engr.uconn.edu/refs/crypto/rng/matsumoto98mersenne.pdf">Mersenne Twister: A 623-dimensionally equidistributed uniform pseudo-random number generator</a>, ACM Transactions on Modeling and Computer Simulation: Special Issue on Uniform Random Number Generation, Vol. 8, No. 1, January 1998, pp. 3-30.

%H <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers.</a>

%o (C++)

%o #include <iostream>

%o #include <random>

%o void A221557(int max)

%o {

%o std::mt19937 gen;

%o for (int i = 1; i <= max; ++i)

%o std::cout << i << ' ' << gen() << '\n';

%o }

%Y Cf. A221558.

%K nonn

%O 1,1

%A _Eric M. Schmidt_, Jan 20 2013

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 24 09:42 EDT 2024. Contains 371935 sequences. (Running on oeis4.)