A284755 Numbers n such that the average of all proper divisors of all positive integers <= n is an integer.
2, 3, 63, 1249, 4696, 1200509
Offset: 1
Links
- Eric Weisstein's World of Mathematics, Restricted Divisor Function
- Index entries for sequences related to sums of divisors
Crossrefs
Programs
-
Mathematica
Select[Range[2, 1300000], Mod[Sum[DivisorSigma[1, k] - k, {k, 1, #}], Sum[DivisorSigma[0, k] - 1, {k, 1, #}]] == 0 &]
Comments