This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A221562 #8 Sep 10 2015 01:10:49 %S A221562 23459059301164,28639057539807,276846226770426,130971693943559, %T A221562 84358451161020,208150879060961,71914269758754,242506792212635, %U A221562 257147515259684,55344035667239,280360381592565,269312768919532,29890265102331,124733844892363,192577305828636,73839672853778 %N A221562 Consecutive values produced by the C++ ranlux48 random number generator with the default seed (19780503). %C A221562 The ranlux48 generator takes the first 11 values from each block of 389 values of ranlux48_base (A221560). %H A221562 Eric M. Schmidt, <a href="/A221562/b221562.txt">Table of n, a(n) for n = 1..1000</a> %H A221562 M. Luescher, <a href="http://arxiv.org/abs/hep-lat/9309020"> A portable high-quality random number generator for lattice field theory calculations</a>, arXiv. %H A221562 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers.</a> %o A221562 (C++) %o A221562 #include <iostream> %o A221562 #include <random> %o A221562 void A221562(int max) %o A221562 { %o A221562 std::ranlux48 gen; %o A221562 for (int i = 1; i <= max; ++i) %o A221562 std::cout << i << ' ' << gen() << '\n'; %o A221562 } %Y A221562 Cf. A221559, A221560, A221561. %K A221562 nonn %O A221562 1,1 %A A221562 _Eric M. Schmidt_, Jan 20 2013