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