login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A110154
G.f.: A(x) = Product_{n>=1} 1/(1 - 4^n*x^n)^(4/4^n); self-convolution of A110156.
4
1, 4, 20, 84, 380, 1540, 6796, 27380, 117020, 476260, 2002220, 8063316, 33957180, 136489156, 566211660, 2290272692, 9463603036, 38042178340, 157211980652, 631321594900, 2594532576636, 10457495255940, 42791736547980
OFFSET
0,2
EXAMPLE
A(x) = 1 + 4*x + 20*x^2 + 84*x^3 + 380*x^4 + 1540*x^5 +... =
1/[(1-4*x)*(1-16*x^2)^(1/4)*(1-64*x^3)^(1/16)*(1-256*x^4)^(1/64)*...]
PROG
(PARI) a(n)=polcoeff(prod(k=1, n, 1/(1-4^k*x^k+x*O(x^n))^(4/4^k)), n)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jul 14 2005
STATUS
approved