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.

A008564 Digits of powers of 3.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

Irregular table with row length sequence A034888. - Jason Kimberley, Nov 26 2012
The constant whose decimal expansion is this sequence is irrational (Mahler, 1981). - Amiram Eldar, Mar 23 2025

Crossrefs

Programs

  • GAP
    Flat(List([0..30],n->ListOfDigits(3^n))); # Muniru A Asiru, Sep 29 2018
  • Mathematica
    Flatten[Table[IntegerDigits[3^n], {n, 0, 26}]] (* Alonso del Arte, Sep 29 2018 *)