OFFSET
1,2
COMMENTS
See A379812 for more links and Ramanujan's general formula.
REFERENCES
Srinivasa Ramanujan, Collected papers, edited by G. H. Hardy et al., Chelsea, 1962, chapter 17, pp. 133-135.
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
Srinivasa Ramanujan, Some formulae in the analytic theory of numbers, Messenger of Mathematics, Vol. 45 (1916), pp. 81-84.
FORMULA
Multiplicative with a(p^e) = (p^(2*e+2)-1) * (p^(3*e+3)-1) / ((p^2-1) * (p^3-1)).
Dirichlet g.f.: zeta(s) * zeta(s-2) * zeta(s-3) * zeta(s-5) / zeta(2*s-5).
Sum_{k=1..n} a(k) ~ c * n^6 / 6, where c = zeta(3) * zeta(4) * zeta(6) / zeta(7) = Pi^10 * zeta(3) / (85050 * zeta(7)) = 1.31261826893951336264... .
MATHEMATICA
a[n_] := Times @@ DivisorSigma[{2, 3}, n]; Array[a, 50]
PROG
(PARI) a(n) = {my(f = factor(n)); sigma(f, 2) * sigma(f, 3); }
CROSSREFS
KEYWORD
nonn,easy,mult
AUTHOR
Amiram Eldar, Jan 03 2025
STATUS
approved