login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A239347 Numbers n such that n^10+10 is prime. 2
1, 539, 583, 1023, 1903, 2277, 2893, 3047, 4433, 4587, 4983, 5181, 6567, 7271, 7359, 10857, 10989, 11341, 12221, 12507, 13167, 13277, 13453, 13739, 14443, 14729, 17347, 17919, 17941, 18381, 19151, 19437, 19481, 21131, 21197, 21307, 22561, 23331, 24871, 25003, 25289, 27643, 28391, 29161, 29469, 31339, 33077, 35057, 36597 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Note that all numbers in this sequence are odd.
LINKS
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
Sequence in context: A231194 A367525 A111258 * A118630 A184546 A252386
KEYWORD
nonn,easy
AUTHOR
Derek Orr, Mar 16 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 05:37 EDT 2024. Contains 371906 sequences. (Running on oeis4.)