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.

A138071 Triangle read by rows: row n lists the digits of A135698(n), the palindromic number with odd number of digits formed from the reflected decimal expansion of Pi.

Original entry on oeis.org

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

Views

Author

Omar E. Pol, Mar 03 2008

Keywords

Comments

Also, successive digits of the numbers A135698(n).

Examples

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

Crossrefs

Decimal expansion of Pi: A000796. Cf. A119351, A135697, A135698, A138070.

Programs

  • Mathematica
    Table[Join[#[[;; n - 1]], #[[n ;; 1 ;; -1]]], {n, Length[#]}] & [First[RealDigits[Pi, 10, 15]]] (* Paolo Xausa, Dec 08 2024 *)