OFFSET
1,1
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..1000
EXAMPLE
The prime 126739 is in the sequence because 912673 = 97^3.
MATHEMATICA
Select[Prime[Range[26*10^5]], IntegerQ[Surd[FromDigits[ RotateRight[ IntegerDigits[ #]]], 3]]&] (* Harvey P. Dale, Oct 28 2018 *)
PROG
(PARI) rotr(a) = if(a<10, a, eval(Str(a%10, a\10)))
s=[]; forprime(n=2, 50000000, if(ispower(rotr(n), 3), s=concat(s, n))); s
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Jan 01 2014
STATUS
approved
