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!)
A248081 Least number k such that k^n + k +/- 1 are twin primes, or 0 if no such k exists. 0
2, 2, 3, 2, 0, 8, 462, 0, 15, 3, 0, 30, 1500, 0, 30, 2, 0, 371, 11058, 0, 11289, 1599, 0, 4139, 44994, 0, 36951, 54, 0, 651, 2088, 0, 8841, 13061, 0, 81, 83406, 0, 20451, 3291, 0, 1821, 1128, 0, 122070, 20534, 0, 57852, 82875, 0, 15150, 132, 0, 515, 7215, 0, 37470, 2375, 0, 2340 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
For n > 2, if n == 2 (mod 3), then k^n + k + 1 is divisible by k^2 + k + 1. Thus it will never be prime.
LINKS
PROG
(PARI)
a(n)=if(n>2&&n==Mod(2, 3), return(0)); k=1; while(!ispseudoprime(k^n+k-1)||!ispseudoprime(k^n+k+1), k++); k
n=1; while(n<50, print1(a(n), ", "); n++)
CROSSREFS
Sequence in context: A248079 A127638 A127639 * A259632 A304041 A238509
KEYWORD
nonn
AUTHOR
Derek Orr, Sep 30 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 August 18 23:41 EDT 2024. Contains 375284 sequences. (Running on oeis4.)