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!)
A059215 Least number k such that k^n reversed is a prime. 2
2, 4, 5, 2, 2, 16, 2, 8, 32, 2, 17, 4, 25, 28, 8, 53, 2, 25, 79, 95, 47, 46, 28, 2, 19, 5, 85, 86, 541, 32, 104, 314, 25, 115, 4, 5, 2, 25, 67, 71, 142, 226, 5, 53, 2, 304, 14, 106, 85, 8, 238, 128, 185, 23, 2, 65, 565, 122, 136, 668, 23, 37, 28, 1117, 178, 5, 74 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(2) = 2 since 1^2, 2^2, 3^2 and 4^2 reversed are 1, 4, 9 and 61 and 61 is the first prime.
a(3) = 5 since 1^3, 2^3, 3^3, 4^3, and 5^3 reversed are 1, 8, 72, 46 and 521 and 521 is the first prime.
LINKS
MATHEMATICA
Do[ k = 2; While[ ! PrimeQ[ ToExpression[ StringReverse[ ToString[ k^n ] ] ] ], k++ ]; Print[ k ], {n, 1, 50} ]
lnk[n_]:=Module[{k=1}, While[!PrimeQ[IntegerReverse[k^n]], k++]; k]; Array[ lnk, 50] (* Requires Mathematica version 10 or later *) (* Harvey P. Dale, Mar 20 2021 *)
PROG
(Python)
from itertools import count
from gmpy2 import digits, is_prime
def a(n): return next(k for k in count(2) if is_prime(int(digits(k**n)[::-1])))
print([a(n) for n in range(1, 68)]) # Michael S. Branicky, Jul 16 2023
CROSSREFS
Cf. A004086.
Sequence in context: A286147 A340755 A369772 * A125142 A234350 A324035
KEYWORD
nonn,base
AUTHOR
Robert G. Wilson v, Jan 16 2001
EXTENSIONS
a(51) and beyond from Michael S. Branicky, Jul 16 2023
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 23 18:16 EDT 2024. Contains 371916 sequences. (Running on oeis4.)