login
A235009
Primes which become fourth powers when the digits are rotated once to the left.
1
61, 601, 63841, 66553, 6208513, 60006553, 60208513, 60983449, 62998657, 64521217, 67807489, 69223681, 600000001, 600000409, 600208513, 605470081, 607163929, 607807489, 634210201, 653379481
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
Cf. A235008.
Sequence in context: A234926 A355602 A069595 * A304764 A316508 A068850
KEYWORD
nonn,base
AUTHOR
Colin Barker, Jan 02 2014
STATUS
approved