login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)