login
A217387
Emirps (A006567) whose difference with the reversal is a perfect cube.
3
1523, 3251, 7529, 9257, 154747, 165857, 171467, 174767, 312509, 322519, 373669, 747451, 758561, 764171, 767471, 905213, 915223, 966373, 1000033, 1020233, 1077733, 1078733, 1083833, 1099933, 1165643, 1173743, 1175743, 1213153, 1239353, 1247453, 1281853, 1292953
OFFSET
1,1
COMMENTS
The differences are multiples of 1728.
LINKS
EXAMPLE
905213 is prime, 312509 is prime. 905213 - 312509 = 592704 = 84^3.
MATHEMATICA
Select[Prime[Range[100000]], !PalindromeQ[#]&&PrimeQ[IntegerReverse[#]] && IntegerQ[ CubeRoot[ Abs[#-IntegerReverse[#]]]]&] (* Harvey P. Dale, Jan 27 2023 *)
PROG
(PARI) isok(i)=my(p=fromdigits(Vecrev(digits(i)))); i!=p && isprime(i) && isprime(p) && ispower(abs(i-p), 3)
{for(i=2, 2*10^6, if(isok(i), print1(i, ", ")))} /* Antonio Roldán, Dec 19 2012 */
CROSSREFS
Cf. A006567.
Sequence in context: A087867 A073104 A031537 * A031717 A236880 A226700
KEYWORD
nonn,base
AUTHOR
Antonio Roldán, Oct 02 2012
STATUS
approved