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!)
A056550 Numbers k such that Sum_{j=1..k} sigma(j) is divisible by k, where sigma(j) = sum of divisors of j (A000203). 15

%I #38 Feb 16 2024 10:13:19

%S 1,2,8,11,17,63,180,259,818,2161,4441,8305,11998,694218,3447076,

%T 4393603,57402883,73459800,121475393,2068420025,5577330586,

%U 13320495021,35297649260,138630178659,988671518737

%N Numbers k such that Sum_{j=1..k} sigma(j) is divisible by k, where sigma(j) = sum of divisors of j (A000203).

%F Values of k for which A024916(k)/k is integer.

%e a(3) = 8 is in the sequence because A024916(8) / 8 = 56 / 8 = 7 is an integer. [_Jaroslav Krizek_, Dec 07 2009]

%p f := []: for i from 1 to 9000 do if add(sigma(n), n=1..i) mod i = 0 then f := [op(f),i] fi; od; f;

%t k=10^4;a[1]=1;a[n_]:=a[n]=DivisorSigma[1,n]+a[n-1]; s=a/@Range@k;Select[Range@k,Divisible[s[[#]],#]&] (* _Ivan N. Ianakiev_, Apr 30 2016 *)

%t Module[{nn=44*10^5,ds},ds=Accumulate[DivisorSigma[1,Range[nn]]];Select[ Thread[{ds,Range[nn]}],Divisible[#[[1]],#[[2]]]&]][[All,2]] (* The program generates the first 16 terms of the sequence. To generate more, increase the value of nn. *) (* _Harvey P. Dale_, Dec 04 2018 *)

%o (PARI) is(n)=sum(k=1,n,n\k*k)%n==0 \\ _Charles R Greathouse IV_, Feb 14 2013

%Y Cf. A000203, A024916, A168133, A168132.

%K nonn,more

%O 1,2

%A _Asher Auel_, Jun 06 2000

%E More terms from _Jud McCranie_, Jul 04 2000

%E a(19)-a(24) from _Donovan Johnson_, Dec 29 2008

%E a(25) from _Donovan Johnson_, Jun 16 2011

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 June 6 19:21 EDT 2024. Contains 373134 sequences. (Running on oeis4.)