OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
A. J. C. Cunningham, High quartan factorisations and primes, Messenger of Mathematics 36 (1907), pp. 145-174.
EXAMPLE
a(1) = 1^4 + 1^8 = 2.
a(2) = 2^4 + 1^8 = 17.
a(3) = 1^4 + 2^8 = 257.
a(4) = 3^4 + 2^8 = 337.
PROG
(PARI) list(lim)=my(v=List([2]), x4, t); for(x=1, sqrtnint(lim\=1, 4), x4=x^4; forstep(y=x%2+1, sqrtnint(lim-x4, 8), 2, if(isprime(t=x4+y^8), listput(v, t)))); Set(v)
CROSSREFS
KEYWORD
nonn
AUTHOR
Charles R Greathouse IV, Aug 21 2017
STATUS
approved