OFFSET
1,1
COMMENTS
As the last digits of primes are not even or 5 (except for primes 2 and 5), the terms do not start with an even number or 5. If m is an integer such that the reversal of m^4 is prime and sqrt4(n) is the fourth root of n then m is not of the form [sqrt4(2 * 10^k), sqrt4(3 * 10^k)] or [sqrt4(4 * 10^k), sqrt4(7 * 10^k)] for nonnegative k etc. - David A. Corneth, Jun 02 2016
All terms == 1 mod 3. - Robert Israel, Jun 03 2016
LINKS
Chai Wah Wu, Table of n, a(n) for n = 1..25659
EXAMPLE
Example: a(1) = 16 is a fourth power because 16 = 2^4 and the reverse of 16 is 61 which is a prime number.
MATHEMATICA
Select[Range[440]^4, PrimeQ[FromDigits@ Reverse@ IntegerDigits@ #] &] (* Michael De Vlieger, Jan 19 2015 *)
PROG
(Python)
from sympy import isprime
A253912_list = [n for n in (i**4 for i in range(10**6)) if isprime(int(str(n)[::-1]))] # Chai Wah Wu, Jun 02 2016
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Rabii Younès, Jan 18 2015
STATUS
approved