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.

A167724 Squares that becomes a prime number when prefixed with a 9.

Original entry on oeis.org

1369, 2401, 2809, 3481, 5929, 9409, 10201, 14161, 16129, 17689, 25921, 28561, 32761, 41209, 44521, 64009, 94249, 100489, 108241, 116281, 117649, 130321, 137641, 146689, 157609, 170569, 175561, 177241, 196249, 201601, 218089, 219961
Offset: 1

Views

Author

Claudio Meller, Nov 10 2009

Keywords

Comments

Subsequence of squares of A032672. - Michel Marcus, Jun 22 2016

Crossrefs

Cf. A032672.

Programs

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