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 A035331 #23 Sep 25 2024 17:14:29 %S A035331 3,141,592,653,589,793,238,462,643,383,279,502,884,197,169,399,375, %T A035331 105,820,974,944,592,307,816,406,286,208,998,628,34,825,342,117,67, %U A035331 982,148,86,513,282,306,647,93,844,609,550,582,231,725,359,408,128,481,117,450 %N A035331 Base-1000 expansion of Pi. %C A035331 Start with a(0)=3; other terms are formed from triples of successive digits in the decimal expansion of Pi. %C A035331 This sequence can be considered as a (pseudo)random generator with range 0..999. Its scatterplot graph is very similar to that of other random generators, e.g., A096558. - _M. F. Hasler_, May 14 2015 %H A035331 T. D. Noe, <a href="/A035331/b035331.txt">Table of n, a(n) for n = 0..10000</a> %F A035331 a(n) = floor(Pi*10^(3n)) mod 1000. - _M. F. Hasler_, May 14 2015 %e A035331 Pi = 3.141 592 653 589 793 238 462 643 383 279 502 884 197 169 399 375 105 ... %t A035331 RealDigits[Pi,1000,60][[1]] (* _Harvey P. Dale_, Nov 22 2015 *) %o A035331 (PARI) default(realprecision,3*N=100);vector(N,i,Pi\1000^(1-i)%1000) \\ or: {P=Pi;vector(N,i,P\1+0*P=frac(P)*1000)} or {P=Pi/1000;vector(N,i,floor(P=frac(P)*1000))}. \\ _M. F. Hasler_, May 11 2015 %Y A035331 Cf. A000796, A016062, A037244, A050819, A032445, A064467. %K A035331 nonn,base,easy,look %O A035331 0,1 %A A035331 _Jörg Zurkirchen_ %E A035331 More terms from Larry Reeves (larryr(AT)acm.org), Oct 04 2001 %E A035331 Better definition from _Franklin T. Adams-Watters_, Apr 10 2006