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.
%I A059008 #14 Dec 20 2023 19:03:27 %S A059008 5,50,52,89,118,122,152,155,157,194,211,218,226,244,247,248,251,256, %T A059008 271,325,326,328,413,452,455,463,466,467,481,485,487,491,499,500,503, %U A059008 520,521,523,526,541,544,547,563,571,581,584,685,686,701,707,716,721 %N A059008 Numbers n such that n^3 reversed is a prime. %H A059008 Indranil Ghosh, <a href="/A059008/b059008.txt">Table of n, a(n) for n = 1..1023</a> %e A059008 52 is in the sequence because the reverse of 52^3 is 806041 and it is a prime. - _Indranil Ghosh_, Feb 10 2017 %t A059008 Select[ Range[ 1000 ], PrimeQ[ ToExpression[ StringReverse[ ToString[ #^3 ] ] ] ] & ] %t A059008 Select[Range[1000],PrimeQ[IntegerReverse[#^3]]&] (* _Harvey P. Dale_, Dec 20 2023 *) %o A059008 (Magma) [n: n in [1..800] | IsPrime(Seqint(Reverse(Intseq(n^3))))]; // _Marius A. Burtea_, Jan 12 2019 %o A059008 (PARI) isok(n) = isprime(fromdigits(Vecrev(digits(n^3)))); \\ _Michel Marcus_, Jan 12 2019 %Y A059008 Cf. A007488. %K A059008 nonn,base %O A059008 1,1 %A A059008 _Robert G. Wilson v_, Jan 16 2001