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.

A037244 Base 100 expansion of Pi.

Original entry on oeis.org

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

Views

Author

Chung Wa, Ho (chungwa(AT)netvigator.com)

Keywords

Comments

Start with 3; other terms are formed from pairs of successive digits in decimal expansion of Pi.

Examples

			Pi = 3.14159265358979323846264338327950288419716939937510582...
		

Crossrefs

Programs

  • Mathematica
    Module[{A037244 = {}, p = N[Pi, 139]},
     Do[Module[{temp = IntegerPart[p]}, AppendTo[A037244, temp];
       p = 100 (p - temp);], {70}]; A037244]

Extensions

Better definition from Franklin T. Adams-Watters, Apr 10 2006