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!)
A242803 Least number k such that (k^k+n)/(k+n) is prime or 0 if no such number exists. 0
3, 4, 3, 0, 4, 491, 9, 5, 3, 4, 0, 16, 0, 7, 5, 0, 4, 20, 5, 85, 3, 64, 25, 15, 625, 0, 10, 0, 7, 19, 7, 9, 0, 15, 5, 0, 0, 4, 16, 25, 0, 0, 17, 11, 0, 16, 5, 0, 0, 7, 31, 0, 31, 100, 5, 0, 0, 0, 4, 0, 0, 0, 9, 0, 13, 0, 0, 0, 7, 0, 10, 0, 5, 0, 0, 0, 0, 0, 51, 0, 0, 0, 0, 136 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) = 0 is confirmed only for k <= 5000, they are not definite.
LINKS
EXAMPLE
(1^1+3)/(1+3) = 1 is not prime. (2^2+3)/(2+3) = 7/5 is not prime. (3^3+3)/(3+3) = 30/6 = 5 is prime. Thus a(3)= 3.
PROG
(PARI) a(n)=for(k=1, 1500, s=(k^k+n)/(k+n); if(floor(s)==s, if(ispseudoprime(s), return(k))));
n=1; while(n<100, print(a(n)); n+=1)
CROSSREFS
Sequence in context: A244042 A318840 A318830 * A064460 A108481 A367076
KEYWORD
nonn,more,hard
AUTHOR
Derek Orr, May 23 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 24 17:51 EDT 2024. Contains 371962 sequences. (Running on oeis4.)