Average number of divisors

from blog John D. Cook, | ↗ original
Let d(n) be the number of divisors of an integer n. For example, d(12) = 6 because 12 is divisible by 1, 2, 3, 4, 6, and 12. The function d varies erratically as the following plot shows. But if you take the running average of d f(n) = (d(1) + d(2) + d(3) + […] The post Average number of divisors first appeared on John D. Cook.