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”).

A182169
Numbers n such that sigma(n) divides sum_{k=1..n} tau(k), where tau(k) is the number of divisors of k (A000005) and sigma(n) is the sum of divisors of n (A000203).
0
1, 2, 7, 19, 358, 3845, 31138, 36461, 4286729, 81945545, 2059172170, 3071920146, 9331669953, 19026491086
OFFSET
1,2
COMMENTS
a(15) > 5*10^10. - Donovan Johnson, Apr 16 2012
MATHEMATICA
Select[Range[1000000], Mod[Sum[DivisorSigma[0, n], {n, #}], DivisorSigma[1, #]] == 0 &] (* Jayanta Basu, Mar 28 2013 *)
PROG
(PARI) s=0; for(n=1, 1e6, if((s+=numdiv(n))%sigma(n)==0, print1(n", "))) \\ Charles R Greathouse IV, Apr 16 2012
CROSSREFS
Cf. A006218.
Sequence in context: A054423 A137990 A056650 * A373765 A170869 A162355
KEYWORD
nonn
AUTHOR
Naohiro Nomoto, Apr 16 2012
EXTENSIONS
a(10) from Charles R Greathouse IV, Apr 16 2012
a(11)-a(14) from Donovan Johnson, Apr 16 2012
STATUS
approved