OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..10000
FORMULA
G.f.: A(x) = 1/Product_{i>=1, j>=0} (1 - x^(i * 4^j)).
Let A(x) be the g.f. of this sequence, and P(x) be the g.f. of A000041, then P(x) = A(x)/A(x^4).
log(a(n)) ~ 2*Pi*sqrt(2*n)/3. - Vaclav Kotesovec, Feb 21 2026
MATHEMATICA
nmax = 60; CoefficientList[1/Series[Product[(1 - x^k)^(IntegerExponent[k, 4] + 1), {k, 1, nmax}], {x, 0, nmax}], x] (* Vaclav Kotesovec, Feb 21 2026 *)
PROG
(PARI) my(N=50, x='x+O('x^N)); Vec(1/prod(k=1, N, (1-x^k)^(valuation(k, 4)+1)))
CROSSREFS
KEYWORD
nonn
AUTHOR
Seiichi Manyama, May 31 2024
STATUS
approved
