The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A242875 Numbers n such that (n^n+2^2)/(n+2) is an integer. 1

%I #16 Jun 10 2014 11:47:17

%S 2,5,8,128,2144,4808,12872,14168,33672,40367,45992,116192,185768,

%T 186824,271208,426008,524288,601352,612768,673661,755792,990407,

%U 996032,1697607,1878368,2073125,2262752,4325960,4810808,6331808,6462647,6707352,7527197,7559477

%N Numbers n such that (n^n+2^2)/(n+2) is an integer.

%C Given S = (n^n+k^k)/(n+k) (here k = 2), when k = 2^m for some m > 0, there are significantly less values of n that make S an integer. For k=3, see A242883.

%C a(15) > 210000.

%C Equivalently, (-2)^n + 4 == 0 (mod n + 2). - _Robert Israel_, Jun 10 2014

%C Odd terms are A033984(2..infinity) - 2. - _Robert Israel_, Jun 10 2014

%e (5^5+2^2)/(5+2) = 3129/7 = 447 is an integer. Thus 5 is a member of this sequence.

%p filter:= proc(n) (-2)&^n + 4 mod (n+2) = 0 end proc;

%p select(filter, [$1..10^6]); # _Robert Israel_, Jun 10 2014

%o (PARI) for(n=1,10^5,s=(n^n+2^2)/(n+2);if(floor(s)==s,print(n)))

%Y Cf. A242883.

%K nonn

%O 1,1

%A _Derek Orr_, May 25 2014

%E a(16)-a(34) from _Robert Israel_, Jun 10 2014

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 May 14 14:04 EDT 2024. Contains 372533 sequences. (Running on oeis4.)