login

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”).

A037244
Base 100 expansion of Pi.
5
3, 14, 15, 92, 65, 35, 89, 79, 32, 38, 46, 26, 43, 38, 32, 79, 50, 28, 84, 19, 71, 69, 39, 93, 75, 10, 58, 20, 97, 49, 44, 59, 23, 7, 81, 64, 6, 28, 62, 8, 99, 86, 28, 3, 48, 25, 34, 21, 17, 6, 79, 82, 14, 80, 86, 51, 32, 82, 30, 66, 47, 9, 38, 44, 60, 95, 50, 58, 22, 31
OFFSET
0,1
COMMENTS
Start with 3; other terms are formed from pairs of successive digits in decimal expansion of Pi.
EXAMPLE
Pi = 3.14159265358979323846264338327950288419716939937510582...
MATHEMATICA
Module[{A037244 = {}, p = N[Pi, 139]},
Do[Module[{temp = IntegerPart[p]}, AppendTo[A037244, temp];
p = 100 (p - temp); ], {70}]; A037244]
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Chung Wa, Ho (chungwa(AT)netvigator.com)
EXTENSIONS
Better definition from Franklin T. Adams-Watters, Apr 10 2006
STATUS
approved