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!)
A050226 Numbers m such that m divides Sum_{k = 1..m} A000005(k). 28

%I #41 Feb 19 2024 01:56:50

%S 1,4,5,15,42,44,47,121,336,340,347,930,2548,6937,6947,51322,379097,

%T 379131,379133,2801205,20698345,56264090,56264197,152941920,152942012,

%U 8350344420,61701166395,455913379395,455913379831,1239301050694,3368769533660,3368769533812

%N Numbers m such that m divides Sum_{k = 1..m} A000005(k).

%D Julian Havil, "Gamma: Exploring Euler's Constant", Princeton University Press, Princeton and Oxford, pp. 112-113, 2003.

%H Donovan Johnson, <a href="/A050226/b050226.txt">Table of n, a(n) for n = 1..39</a> (quotients <= 40)

%F m is in the sequence if Sum_{i = 1..m} d(i) = m*k, k an integer, where d(i) = number of divisors of i.

%e For k = 15 the sum is 1 + 2 + 2 + 3 + 2 + 4 + 2 + 4 + 3 + 4 + 2 + 6 + 2 + 4 + 4 = 45 which is divisible by 15.

%t s = 0; Do[ s = s + DivisorSigma[ 0, n ]; If[ Mod[ s, n ] == 0, Print[ n ] ], {n, 1, 2*10^9} ]

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

%t Module[{nn=400000},Select[Thread[{Range[nn],Accumulate[DivisorSigma[0,Range[nn]]]}],Divisible[#[[2]],#[[1]]]&]][[All,1]] (* The program generates the first 19 terms of the sequence. To generate more, increase the nn constant. *) (* _Harvey P. Dale_, Jul 03 2022 *)

%o (PARI) lista(nn) = {my(s = 0); for (n=1, nn, s += numdiv(n); if (!(s % n), print1(n, ", ")););} \\ _Michel Marcus_, Dec 14 2015

%o (Sage)

%o def A050226_list(len):

%o a, L = 0, []

%o for n in (1..len):

%o a += sigma(n,0)

%o if n.divides(a): L.append(n)

%o return L

%o A050226_list(10000) # _Peter Luschny_, Dec 18 2015

%Y Cf. A000005, A006218, A057494, A085567, A085829.

%K nonn,nice

%O 1,2

%A _Labos Elemer_, Dec 20 1999

%E More terms from _Robert G. Wilson v_, Sep 21 2000

%E Further terms from _Naohiro Nomoto_, Aug 03 2001

%E a(26)-a(30) from _Donovan Johnson_, Dec 21 2008

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 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)