OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
FORMULA
Sum_{k=1..n} a(k) ~ (log(n) + 2*gamma - 1)*n + sqrt(n), where gamma is the Euler-Mascheroni constant A001620. - Vaclav Kotesovec, Jul 01 2021
EXAMPLE
a(16)=6 because there are three distinct pairs (a <= b) such that a*b = n: the pairs (1,16), (2,8) and (4,4). So the number of factors, with repetition, in all the pairs is equal to 6.
MAPLE
seq(numtheory:-tau(n) + `if`(issqr(n), 1, 0), n = 1 .. 200); # Robert Israel, Dec 23 2015
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Omar E. Pol, Jun 23 2009
STATUS
approved