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.

A167726 Cubes that become a prime number when prefixed with a 2.

Original entry on oeis.org

27, 729, 12167, 19683, 68921, 148877, 185193, 328509, 658503, 704969, 970299, 1030301, 1367631, 2248091, 3581577, 5000211, 9663597, 15813251, 17779581, 19034163
Offset: 1

Views

Author

Claudio Meller, Nov 10 2009

Keywords

Comments

Subsequence of cubes of A032665. - Michel Marcus, Jun 22 2016

Crossrefs

Cf. A032665.

Programs

  • Mathematica
    Select[Range[1, 500000, 2]^3, PrimeQ[FromDigits[Join[{2}, IntegerDigits[#]]]] &] (* G. C. Greubel, Jun 21 2016 *)