Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #11 Aug 28 2016 18:18:33
%S 3,14,15,92,65,35,89,79,32,38,46,26,43,38,32,79,50,28,84,19,71,69,39,
%T 93,75,10,58,20,97,49,44,59,23,7,81,64,6,28,62,8,99,86,28,3,48,25,34,
%U 21,17,6,79,82,14,80,86,51,32,82,30,66,47,9,38,44,60,95,50,58,22,31
%N Base 100 expansion of Pi.
%C Start with 3; other terms are formed from pairs of successive digits in decimal expansion of Pi.
%H T. D. Noe, <a href="/A037244/b037244.txt">Table of n, a(n) for n = 0..10000</a>
%e Pi = 3.14159265358979323846264338327950288419716939937510582...
%t Module[{A037244 = {}, p = N[Pi, 139]},
%t Do[Module[{temp = IntegerPart[p]}, AppendTo[A037244, temp];
%t p = 100 (p - temp);], {70}]; A037244]
%Y Cf. A000796, A016062, A035331.
%K nonn,base,easy
%O 0,1
%A Chung Wa, Ho (chungwa(AT)netvigator.com)
%E Better definition from _Franklin T. Adams-Watters_, Apr 10 2006