OFFSET
1,1
COMMENTS
Note that all the numbers in this sequence are odd.
EXAMPLE
3^8+8 = 6569 is prime. Thus, 3 is a member of this sequence.
MATHEMATICA
Select[Range[1, 3600, 2], PrimeQ[#^8+8]&] (* Harvey P. Dale, Apr 20 2015 *)
PROG
(Python)
import sympy
from sympy import isprime
{print(n) for n in range(10**4) if isprime(n**8+8)}
(PARI) is(n)=isprime(n^8+8) \\ Charles R Greathouse IV, Jun 06 2017
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Derek Orr, Mar 16 2014
STATUS
approved