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!)
A240234 Least number k such that k*n^k + 1 is prime, or 0 if no such number exists. 3
1, 1, 2, 1, 1242, 1, 34, 5, 2, 1, 10, 1 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
a(n) = 1 if and only if n + 1 is prime.
Next term a(13), if it exists, is greater than 1000000. Other unknown terms are at index: 25, 29, 41, 47, 49, 53, 55, 69, 73, 79. (See links). - Jeppe Stig Nielsen, Aug 08 2014
LINKS
EXAMPLE
1*3^1 + 1 = 4 is not prime. 2*3^2 + 1 = 19 is prime. Thus, a(3) = 2.
PROG
(PARI) a(n) = for(k=1, 4000, if(ispseudoprime(k*n^k+1), return(k)))
n=1; while(n<100, print1(a(n), ", "); n++)
CROSSREFS
Sequence in context: A087037 A354913 A036109 * A367996 A098940 A098939
KEYWORD
nonn,hard,more
AUTHOR
Derek Orr, Apr 02 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 July 12 23:13 EDT 2024. Contains 374257 sequences. (Running on oeis4.)