OFFSET
1,2
LINKS
Eric Weisstein's World of Mathematics, Divisor Function.
FORMULA
Multiplicative with a(p^e) = (e+1)^3. - Amiram Eldar, Dec 31 2022
a(n) = Sum_{d1|n} Sum_{d2|n} tau(d1*d2). - Ridouane Oudra, Mar 07 2023
From Vaclav Kotesovec, Mar 09 2023: (Start)
Dirichlet g.f.: Product_{p prime} p^(2*s) * (1 + 4*p^s + p^(2*s)) / (p^s - 1)^4.
Dirichlet g.f.: zeta(s)^8 * Product_{p prime} (1 - 9/p^(2*s) + 16/p^(3*s) - 9/p^(4*s) + 1/p^(6*s)), (with a product that converges for s=1). (End)
MAPLE
with(numtheory): seq(tau(n)^3, n=1..100); # Ridouane Oudra, Mar 07 2023
MATHEMATICA
DivisorSigma[0, Range[100]]^3
PROG
(PARI) a(n) = numdiv(n)^3; \\ Altug Alkan, Sep 10 2018
(PARI) for(n=1, 100, print1(direuler(p=2, n, (1 + 4*X + X^2)/(1 - X)^4)[n], ", ")) \\ Vaclav Kotesovec, Mar 09 2023
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Vaclav Kotesovec, Sep 10 2018
STATUS
approved