OFFSET
1,1
COMMENTS
It is observed that 203993941 is the smallest prime in this sequence.
LINKS
K. D. Bajpai and Giovanni Resta, Table of n, a(n) for n = 1..1000 (first 119 terms from K. D. Bajpai)
Chris K. Caldwell and G. L. Honaker, Jr., Prime Curios! 203993941
EXAMPLE
a(1) = 203993941: Reversing the digits gives 149399302 and 203993941+149399302=353393243=707^3.
MAPLE
with(StringTools):KD:= proc() local n, a, b, c, d, e, count; count:=1: for n from 1 to 17000000 do; a:=ithprime(n); b:=parse(Reverse(convert((a), string))); c:=a+b; d:=evalf(c^(1/3)); e:=floor(d); if d=e then lprint(count, a); count:=count+1; fi ; od; end:KD();
PROG
(PARI) rev(n)=subst(Polrev(digits(n)), 'x, 10)
is(n)=isprime(n) && ispower(n+rev(n), 3) \\ Charles R Greathouse IV, Aug 05 2013
CROSSREFS
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Aug 05 2013
STATUS
approved