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.

A059696 Primes p such that p^3 reversed is also prime.

Original entry on oeis.org

5, 89, 157, 211, 251, 271, 463, 467, 487, 491, 499, 503, 521, 523, 541, 547, 563, 571, 701, 1069, 1091, 1103, 1129, 1151, 1187, 1217, 1447, 1451, 1487, 1489, 1493, 1979, 1999, 2089, 2339, 2351, 2383, 2437, 2467, 2621, 2657, 2693, 3119, 3121, 3221, 3251
Offset: 1

Views

Author

Robert G. Wilson v, Feb 06 2001

Keywords

Crossrefs

Cf. A059008.

Programs

  • Magma
    [p: p in PrimesUpTo(3300) | IsPrime(Seqint(Reverse(Intseq(p^3))))]; // Vincenzo Librandi, Apr 11 2013
  • Mathematica
    Select[ Range[ 4000 ], PrimeQ[ # ] && PrimeQ[ ToExpression[ StringReverse[ ToString[ #^3 ] ] ] ] & ]