cp's OEIS Frontend

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.

A221561 Consecutive values produced by the C++ ranlux24 random number generator with the default seed (19780503).

This page as a plain text file.
%I A221561 #7 Sep 10 2015 01:10:38
%S A221561 15039276,16323925,14283486,7150092,68089,8584138,4918023,11368221,
%T A221561 8644539,8342712,3458016,6733135,8443170,1196392,3446939,449678,
%U A221561 5065508,4516318,9837863,7025236,16004084,14417659,2735901,15059233,15707865,11839529,7081334,4448725
%N A221561 Consecutive values produced by the C++ ranlux24 random number generator with the default seed (19780503).
%C A221561 The ranlux24 generator takes the first 23 values from each block of 223 values of ranlux24_base (A221559).
%H A221561 Eric M. Schmidt, <a href="/A221561/b221561.txt">Table of n, a(n) for n = 1..1000</a>
%H A221561 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 A221561 <a href="/index/Ps#PRN">Index entries for sequences related to pseudo-random numbers.</a>
%o A221561 (C++)
%o A221561 #include <iostream>
%o A221561 #include <random>
%o A221561 void A221561(int max)
%o A221561 {
%o A221561   std::ranlux24 gen;
%o A221561   for (int i = 1; i <= max; ++i)
%o A221561     std::cout << i << ' ' << gen() << '\n';
%o A221561 }
%Y A221561 Cf. A221559, A221560, A221562.
%K A221561 nonn
%O A221561 1,1
%A A221561 _Eric M. Schmidt_, Jan 20 2013