OFFSET
0,3
FORMULA
G.f. A(x) satisfies: A(x) = 1 + Sum_{k>=1} psi(k)*x^k*A(x)^k, where psi() is the Dedekind psi function (A001615).
G.f.: A(x) = (1/x)*Series_Reversion(x/(1 + Sum_{k>=1} psi(k)*x^k)).
EXAMPLE
G.f.: A(x) = 1 + x + 4*x^2 + 14*x^3 + 59*x^4 + 257*x^5 + 1185*x^6 + 5609*x^7 + 27259*x^8 + 134911*x^9 + 678252*x^10 + ...
MATHEMATICA
terms = 26; CoefficientList[1/x InverseSeries[Series[x/(1 + Sum[DirichletConvolve[i, MoebiusMu[i]^2, i, k] x^k, {k, 1, terms}]), {x, 0, terms}], x], x]
terms = 26; A[_] = 0; Do[A[x_] = 1 + Sum[MoebiusMu[k]^2 x^k A[x]^k/(1 - x^k A[x]^k)^2, {k, 1, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
terms = 26; A[_] = 0; Do[A[x_] = 1 + Sum[DirichletConvolve[i, MoebiusMu[i]^2, i, k] x^k A[x]^k, {k, 1, j}] + O[x]^j, {j, 1, terms}]; CoefficientList[A[x], x]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 10 2019
STATUS
approved