OFFSET
1,1
COMMENTS
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..86
EXAMPLE
a(14)=344800741 means that 147008443=43^5=p(14)^5, where 5 is the smallest such exponent;
a(19) has 82 decimal digits and if reversed equals 39th power of p(19)=67.
PROG
(Python)
from sympy import prime, isprime
def A085300(n):
p = prime(n)
q = p
while True:
m = int(str(q)[::-1])
if isprime(m):
return(m)
q *= p # Chai Wah Wu, Jun 02 2016
CROSSREFS
KEYWORD
base,nonn
AUTHOR
Labos Elemer, Jun 24 2003
STATUS
approved