OFFSET
1,4
COMMENTS
Inverse weigh transform of A005169.
LINKS
Alois P. Heinz, Table of n, a(n) for n = 1..3000
N. J. A. Sloane, Transforms
Eric Weisstein's World of Mathematics, Rogers-Ramanujan Continued Fraction
FORMULA
Product_{n>=1} (1 + x^n)^a(n) = 1/(1 - x/(1 - x^2/(1 - x^3/(1 - x^4/(1 - x^5/(1 - ...)))))).
a(n) ~ 1 / (n * A347901^n). - Vaclav Kotesovec, Sep 18 2021
EXAMPLE
(1 + x) * (1 + x^2) * (1 + x^3) * (1 + x^4)^2 * (1 + x^5)^2 * ... * (1 + x^n)^a(n) * ... = 1/(1 - x/(1 - x^2/(1 - x^3/(1 - x^4/(1 - x^5/(1 - ...)))))).
MATHEMATICA
nn = 39; f[x_] := Product[(1 + x^n)^a[n], {n, 1, nn}]; sol = SolveAlways[0 == Series[f[x] - 1/(1 + ContinuedFractionK[-x^k, 1, {k, 1, nn}]), {x, 0, nn}], x]; Table[a[n], {n, 1, nn}] /. sol // Flatten
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Jun 11 2018
STATUS
approved