login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)