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.

A019545 Cubes whose digits are cubes.

Original entry on oeis.org

0, 1, 8, 1000, 8000, 1000000, 8000000, 1000000000, 8000000000, 1000000000000, 8000000000000, 1000000000000000, 8000000000000000, 1000000000000000000, 8000000000000000000, 1000000000000000000000
Offset: 1

Views

Author

R. Muller

Keywords

Comments

Is a(n) = 1000*a(n-2) for n > 3? - Charles R Greathouse IV, Sep 20 2012
Subsequence of A046031. - Michel Marcus, May 24 2014

Crossrefs

Cf. A046031.

Programs

  • Mathematica
    Join[{0},Select[FromDigits/@(Flatten[Table[PadRight[{d},n,0],{n,30},{d,{1,8}}],1]),IntegerQ[Surd[#,3]]&]] (* Harvey P. Dale, Dec 03 2021 *)