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!)
A075723 Numbers n such that 1 + n + n^6 is a prime. 6
1, 2, 3, 6, 8, 15, 17, 29, 30, 32, 45, 48, 59, 72, 74, 80, 87, 128, 141, 153, 155, 156, 158, 176, 182, 191, 197, 210, 216, 230, 273, 284, 293, 305, 314, 356, 366, 380, 384, 399, 402, 407, 408, 410, 413, 420, 435, 443, 447, 450, 473, 479, 497 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For s = 5,8,11,14,17,20,..., n_s=1+n+n^s is always composite for any n>1. Also at n=1, n_s=3 is a prime for any s. So it is interesting to consider only the cases of s != 5,8,11,14,17,20,... and n>1. Here I consider the case s=6 and find several first n's making n_s a prime (or a probable prime).
LINKS
EXAMPLE
15 is OK because at s=6, n=15, n_s = 1 + n + n^s = 11390641 is a prime.
MATHEMATICA
Select[Range[500], PrimeQ[1 + # + #^6] &] (* Vincenzo Librandi, Jul 28 2014 *)
PROG
(Magma) [n: n in [0..500] | IsPrime(s) where s is 1+n+n^6]; // Vincenzo Librandi, Jul 28 2014
(PARI) for(n=1, 10^3, if(isprime(n^6+n+1), print1(n, ", "))) \\ Derek Orr, Feb 07 2015
CROSSREFS
Sequence in context: A297416 A304484 A095162 * A294496 A138137 A319758
KEYWORD
nonn,easy
AUTHOR
Zak Seidov, Oct 03 2002
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 24 08:59 EDT 2024. Contains 371935 sequences. (Running on oeis4.)