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.

A138114 Triangle read by rows: row n lists the first n digits of the decimal expansion of Pi.

Original entry on oeis.org

3, 3, 1, 3, 1, 4, 3, 1, 4, 1, 3, 1, 4, 1, 5, 3, 1, 4, 1, 5, 9, 3, 1, 4, 1, 5, 9, 2, 3, 1, 4, 1, 5, 9, 2, 6, 3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 3, 1, 4, 1, 5, 9, 2, 6, 5, 3, 5, 8
Offset: 1

Views

Author

Omar E. Pol, Mar 14 2008

Keywords

Examples

			Triangle begins:
..... 3
.... 3,1
... 3,1,4
.. 3,1,4,1
. 3,1,4,1,5
		

Crossrefs

Programs

  • Mathematica
    s={};Do[AppendTo[s,RealDigits[Pi,10,n][[1]]],{n,12}];s//Flatten (* James C. McMahon, Jun 05 2025 *)