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.

Showing 1-10 of 11 results. Next

A000455 Digits of powers of 2.

Original entry on oeis.org

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

Views

Author

N. J. A. Sloane; entry revised by N. J. A. Sloane, Jun 10 2012

Keywords

Comments

The number 0.a(0)a(1)a(2)...=0.124816... is a rich (or disjunctive) number. - Robert FERREOL, Apr 01 2020
The constant whose decimal expansion is this sequence is irrational (Mahler, 1981). - Amiram Eldar, Mar 23 2025

References

  • David Gale, Tracking the Automatic ANT And Other Mathematical Explorations, 1998, pp. 42-43.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

Crossrefs

Programs

A008565 Digits of powers of 4.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

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

Examples

			Triangle begins:
  1;
  4;
  1, 6;
  6, 4;
  2, 5, 6;
  1, 0, 2, 4;
  4, 0, 9, 6;
  1, 6, 3, 8, 4;
  6, 5, 5, 3, 6;
  2, 6, 2, 1, 4, 4;
  1, 0, 4, 8, 5, 7, 6;
  ...
		

Crossrefs

Cf. A000302 (powers of 4), A210434.
Last elements of rows give A168428.

Programs

  • Maple
    R:= 1: t:= 1: count:= 1:
    while count < 100 do
      t:= 4*t; L:= convert(t,base,10);
      count:= count+nops(L);
      R:= R, op(ListTools:-Reverse(L));
    od:
    R; # Robert Israel, May 05 2020
  • Mathematica
    Table[IntegerDigits[4^i],{i,0,17}]//Flatten (* Stefano Spezia, Aug 06 2024 *)

A008566 Digits of powers of 5.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

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

Examples

			Triangle begins:
  1;
  5;
  2, 5;
  1, 2, 5;
  6, 2, 5;
  3, 1, 2, 5;
  1, 5, 6, 2, 5;
  7, 8, 1, 2, 5,
  3, 9, 0, 6, 2, 5;
  ...
		

Crossrefs

Programs

  • Mathematica
    Flatten[IntegerDigits/@(5^Range[0,20])] (* Harvey P. Dale, Jan 18 2012 *)

A008567 Digits of powers of 6.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

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

Examples

			Triangle begins:
  1;
  6;
  3, 6;
  2, 1, 6;
  1, 2, 9, 6;
  7, 7, 7, 6;
  4, 6, 6, 5, 6;
  2, 7, 9, 9, 3, 6;
  1, 6, 7, 9, 6, 1, 6;
  1, 0, 0, 7, 7, 6, 9, 6;
  ...
		

Crossrefs

A008568 Digits of powers of 7.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

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

Examples

			Triangle begins:
  1;
  7;
  4, 9;
  3, 4, 3;
  2, 4, 0, 1;
  1, 6, 8, 0, 7;
  1, 1, 7, 6, 4, 9;
  8, 2, 3, 5, 4, 3;
  ...
		

Crossrefs

Programs

  • Mathematica
    Flatten[IntegerDigits[7^Range[0,20]]]  (* Harvey P. Dale, Mar 03 2011 *)

A008571 Digits of powers of 11.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

The constant whose decimal expansion is this sequence is irrational (Mahler, 1981). - Amiram Eldar, Mar 23 2025

Examples

			Triangle begins:
  1;
  1, 1;
  1, 2, 1;
  1, 3, 3, 1;
  1, 4, 6, 4, 1;
  1, 6, 1, 0, 5, 1;
  1, 7, 7, 1, 5, 6, 1;
  1, 9, 4, 8, 7, 1, 7, 1;
  2, 1, 4, 3, 5, 8, 8, 8, 1;
  ...
		

Crossrefs

Programs

  • Mathematica
    IntegerDigits[11^Range[0,20]]//Flatten (* Harvey P. Dale, Aug 26 2025 *)

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 *)

A008569 Digits of powers of 8.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

The constant whose decimal expansion is this sequence is irrational (Mahler, 1981). - Amiram Eldar, Mar 23 2025

Examples

			Triangle begins:
  1;
  8;
  6, 4;
  5, 1, 2;
  4, 0, 9, 6;
  3, 2, 7, 6, 8;
  2, 6, 2, 1, 4, 4;
  2, 0, 9, 7, 1, 5, 2;
  ...
		

Crossrefs

Programs

  • Mathematica
    IntegerDigits/@(8^Range[0,20])//Flatten (* Harvey P. Dale, Nov 14 2020 *)

A008572 Digits of powers of 12.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

The constant whose decimal expansion is this sequence is irrational (Mahler, 1981). - Amiram Eldar, Mar 23 2025

Examples

			Triangle begins:
  1;
  1, 2;
  1, 4, 4;
  1, 7, 2, 8;
  2, 0, 7, 3, 6;
  2, 4, 8, 8, 3, 2;
  2, 9, 8, 5, 9, 8, 4;
  ...
		

Crossrefs

Programs

  • Mathematica
    Flatten[IntegerDigits/@(12^Range[0,15])] (* Harvey P. Dale, Dec 19 2011 *)

A008573 Digits of powers of 13.

Original entry on oeis.org

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

Views

Author

Keywords

Comments

The constant whose decimal expansion is this sequence is irrational (Mahler, 1981). - Amiram Eldar, Mar 23 2025

Examples

			Triangle begins:
  1;
  1, 3;
  1, 6, 9;
  2, 1, 9, 7;
  2, 8, 5, 6, 1;
  3, 7, 1, 2, 9, 3;
  4, 8, 2, 6, 8, 0, 9;
  ...
		

Crossrefs

Programs

  • Mathematica
    IntegerDigits/@(13^Range[0,20])//Flatten (* Harvey P. Dale, Oct 24 2017 *)
Showing 1-10 of 11 results. Next