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!)
A242801 Least number k > 1 such that (k^k+n)/(k+n) is an integer. 5
3, 4, 3, 6, 3, 8, 5, 4, 3, 4, 5, 7, 11, 4, 5, 18, 4, 20, 5, 8, 3, 11, 9, 4, 5, 13, 9, 16, 7, 19, 7, 4, 11, 5, 5, 7, 19, 4, 9, 16, 7, 9, 5, 6, 15, 16, 5, 8, 7, 7, 9, 13, 19, 12, 5, 7, 12, 29, 4, 5, 16, 16, 9, 10, 7, 16, 13, 16, 6, 17, 9, 13, 5, 16, 5, 9, 7, 13, 7, 4, 9, 41, 15 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
It is believed that a(n) <= n+2 for all n > 0.
a(n) also exists for all n < 1. - Robert G. Wilson v, Jun 05 2014
LINKS
EXAMPLE
(2^2+1)/(2+1) = 5/3 is not an integer. (3^3+1)/(3+1) = 28/4 = 7 is an integer. Thus a(1) = 3.
MATHEMATICA
f[n_] := Block[{k = 2}, While[ Mod[ PowerMod[k, k, k + n] + n, k + n] != 0, k++]; k]; Array[f, 90] (* Robert G. Wilson v, Jun 05 2014 *)
PROG
(PARI) a(n)=for(k=2, 1000, s=(k^k+n)/(k+n); if(floor(s)==s, return(k)));
n=1; while(n<100, print(a(n), ", "); n+=1) \\ corrected by Michel Marcus, May 24 2014
CROSSREFS
Sequence in context: A281626 A327650 A338128 * A021295 A061112 A078809
KEYWORD
nonn
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 March 28 16:58 EDT 2024. Contains 371254 sequences. (Running on oeis4.)