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 A221559 #14 Oct 28 2022 14:22:40 %S A221559 15039276,16323925,14283486,7150092,68089,8584138,4918023,11368221, %T A221559 8644539,8342712,3458016,6733135,8443170,1196392,3446939,449678, %U A221559 5065508,4516318,9837863,7025236,16004084,14417659,2735901,15618433,5184878,902968,7559237,14143441 %N A221559 Consecutive values produced by the C++ ranlux24_base random number generator with the default seed (19780503). %C A221559 This is a "subtract with carry" generator and is used to define the ranlux24 (A221561) generator. %C A221559 Period is (2^572 - 2^236)/3. - _Charles R Greathouse IV_, Oct 28 2022 %H A221559 Eric M. Schmidt, <a href="/A221559/b221559.txt">Table of n, a(n) for n = 1..1000</a> %H A221559 George Marsaglia and Arif Zaman, <a href="http://projecteuclid.org/euclid.aoap/1177005878">A New Class of Random Number Generators</a>, Annals of Applied Probability, Volume 1, Number 3 (1991), 462-480. %H A221559 Alexei Sibidanov, <a href="https://arxiv.org/abs/1705.03123">A revision of the subtract-with-borrow random number generators</a>, arXiv preprint (2017). arXiv:1705.03123 [physics.comp-ph] %H A221559 <a href="/index/Per#periodic">Index entries for periodic sequences with large period</a>. %H A221559 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers.</a> %o A221559 (C++) %o A221559 #include <iostream> %o A221559 #include <random> %o A221559 void A221559(int max) %o A221559 { %o A221559 std::ranlux24_base gen; %o A221559 for (int i = 1; i <= max; ++i) %o A221559 std::cout << i << ' ' << gen() << '\n'; %o A221559 } %Y A221559 Cf. A221560, A221561, A221562. %K A221559 nonn %O A221559 1,1 %A A221559 _Eric M. Schmidt_, Jan 20 2013