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

A135868
G.f. A(x) = (1 + x*A(2*x))^2.
8
1, 2, 9, 80, 1368, 45344, 2952208, 381005824, 97928967168, 50238812700672, 51495089926791168, 105513593089512439808, 432289346894817079853056, 3541746937174189008054386688, 58031524865557213409213540204544
OFFSET
0,2
COMMENTS
Self-convolution of A135867 such that A135867(n+1) = 2^n*a(n).
PROG
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=0, n, A=1+x*subst(A, x, 2*x)^2); polcoeff(A^2, n)}
CROSSREFS
Cf. A135867.
Sequence in context: A193208 A279055 A320946 * A212271 A147302 A301861
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 02 2007
STATUS
approved