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”).

A178089
G.f. satisfies: A(x) = Sum_{n>=0} x^n * Product_{k=0..n-1} A(2^k*x).
2
1, 1, 2, 6, 26, 164, 1548, 22612, 527016, 20075480, 1272488296, 136039530768, 24791209794352, 7767414503113808, 4214117431305739680, 3983248890848252043616, 6594358097712974323610528, 19210839739434953100591639104, 98895926239537023373263092515008
OFFSET
0,3
EXAMPLE
G.f.: A(x) = 1 + x + 2*x^2 + 6*x^3 + 26*x^4 + 164*x^5 +...
where
A(x) = 1 + x*A(x) + x^2*A(x)*A(2*x) + x^3*A(x)*A(2*x)*A(4*x) +...
PROG
(PARI) {a(n, r=1)=local(A=1+x); for(i=1, n, A=1+sum(m=1, n, r^m*x^m*prod(k=0, m-1, subst(A, x, 2^k*x+x*O(x^n))))); polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
Sequence in context: A141713 A005272 A307082 * A363003 A002449 A059430
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 19 2010
STATUS
approved