login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A226079
Primes p such that p plus its decimal reversal is a cube.
1
203993941, 205399741, 205795741, 205993741, 207894541, 208795441, 213399931, 214498831, 214795831, 214894831, 217498531, 217894531, 218993431, 219894331, 223597921, 224399821, 225795721, 227498521
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
Cf. A059799 (similar sequence for squares), A080179.
Sequence in context: A078249 A243363 A273094 * A034641 A288088 A233493
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Aug 05 2013
STATUS
approved