OFFSET
1,2
COMMENTS
In general, for m > 0, if Dirichlet g.f. is zeta(s)^m, then Sum_{j=1..n} a(j) ~ n*log(n)^(m-1)/Gamma(m) * (1 + (m-1)*(m*gamma - 1)/log(n)), where gamma is the Euler-Mascheroni constant A001620 and Gamma() is the gamma function.
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 1..10000
FORMULA
MATHEMATICA
coeff=CoefficientList[Series[1/(1-x)^(3/2), {x, 0, 20}]//Normal, x]; dptTerm[n_]:=Module[{flist=FactorInteger[n]}, If[n==1, coeff[[1]], Numerator[Times@@(coeff[[flist[[All, 2]]+1]])]]]; Array[dptTerm, 73] (* Shenghui Yang, May 04 2025 *)
PROG
(PARI) for(n=1, 100, print1(numerator(direuler(p=2, n, 1/(1-X)^(3/2))[n]), ", "))
CROSSREFS
KEYWORD
nonn,frac,mult
AUTHOR
Vaclav Kotesovec, May 04 2025
STATUS
approved
