login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A168127
Numbers k such that Sum_{j=1..k} sigma(j) / sigma(k) is an integer.
4
1, 3, 29, 365, 1225, 81595, 86249, 185699, 582917, 11413204, 16646745763, 311408527843, 709342670921, 881267828693
OFFSET
1,2
COMMENTS
Numbers k such that A024916(k)/A000203(k) is an integer.
Corresponding values of sigma(k), Sum_{j=1..k} sigma(j) and Sum_{j=1..k} sigma(j)/sigma(k) are given in A168129, A168130 and A168128. - Jaroslav Krizek, Nov 21 2009
a(11) > 10^10. - Donovan Johnson, Oct 16 2013
a(15) > 10^12. - Giovanni Resta, Jun 06 2016
EXAMPLE
29 is in the sequence because A024916(29) / A000203(29) = 690 / 30 = 23 is an integer.
PROG
(PARI) m=0; for(k=1, 11413204, s=sigma(k); m=m+s; if(m%s==0, print1(k ", "))) \\ Donovan Johnson, Oct 16 2013
(PARI) isok(k) = (sum(j=1, k, sigma(j)) % sigma(k)) == 0; \\ Michel Marcus, Feb 19 2020
CROSSREFS
KEYWORD
nonn,more
AUTHOR
Jaroslav Krizek, Nov 18 2009, Dec 04 2009
EXTENSIONS
a(8)-a(10) from Donovan Johnson, Oct 16 2013
a(11)-a(14) from Giovanni Resta, Jun 06 2016
Name edited by Michel Marcus, Feb 19 2020
STATUS
approved