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.

A059208 Numbers n such that n^7 reversed is a prime.

Original entry on oeis.org

2, 20, 29, 41, 71, 76, 79, 133, 151, 152, 193, 200, 257, 268, 290, 359, 377, 379, 382, 389, 410, 493, 518, 544, 607, 710, 739, 760, 773, 784, 790, 794, 964, 1006, 1019, 1024, 1049, 1178, 1217, 1330, 1336, 1339, 1409, 1427, 1442, 1448, 1456, 1481, 1492
Offset: 1

Views

Author

Robert G. Wilson v, Jan 16 2001

Keywords

Programs

  • Mathematica
    Select[Range[2000], PrimeQ[ToExpression[StringReverse[ToString[#^7]]]] &]
    Select[Range[1500],PrimeQ[IntegerReverse[#^7]]&] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, May 29 2017 *)