OFFSET
1,1
COMMENTS
Note that all the numbers in this sequence are odd.
EXAMPLE
3^8-8 = 6553 is prime. Thus, 3 is a member of this sequence.
MATHEMATICA
Select[Range[3, 1200, 2], PrimeQ[#^8-8]&] (* Harvey P. Dale, Jun 27 2014 *)
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, Feb 20 2017
CROSSREFS
KEYWORD
nonn
AUTHOR
Derek Orr, Mar 17 2014
STATUS
approved