OFFSET
1,1
COMMENTS
Every term in the sequence begins with the digit 6.
EXAMPLE
The prime 6208513 is in the sequence because 2085136=38^4.
MATHEMATICA
Select[Prime[Range[34*10^6]], IntegerQ[Surd[FromDigits[ RotateLeft[ IntegerDigits[ #]]], 4]]&] (* Harvey P. Dale, Sep 12 2021 *)
PROG
(PARI) rotl(a) = my(b, c, d); b=#Str(a); c=floor(a/(10^(b-1))); d=a-c*(10^(b-1)); 10*d+c
s=[]; forprime(n=2, 700000000, if(ispower(rotl(n), 4), s=concat(s, n))); s
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Jan 02 2014
STATUS
approved