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

A128326
G.f.: A(x) = 1 + G(G(G(x))), where G(x) = x + x*G(G(x)) is the g.f. of A030266.
4
1, 1, 3, 12, 57, 305, 1787, 11269, 75629, 535960, 3987913, 31021693, 251445581, 2117993712, 18499513147, 167246537937, 1562556275281, 15066167302802, 149737897716757, 1532313152898208, 16129331500727047
OFFSET
0,3
COMMENTS
Equals row 1 of table A128325.
FORMULA
G.f. satisfies: A(x) = x/(1 - A( x/(1 - A(x)) )) when offset is taken to be 1. - Paul D. Hanna, Dec 20 2014
PROG
(PARI) {a(n)=local(A=1+x, B); for(i=0, n, A = 1 + x*A * subst(A, x, x*A+x*O(x^n))); B=A; B=subst(B, x, x*A+x*O(x^n)); polcoeff(B, n)}
for(n=0, 30, print1(a(n), ", "))
(PARI) {a(n)=local(A=1+x+x*O(x^n)); for(i=1, n, A = 1/subst(1-x*A, x, x/(1-x*A +x*O(x^n))) ); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
Cf. A030266; A128325 (table), A128327 (row 2), A128328 (row 3), A128329 (main diagonal).
Sequence in context: A291695 A117107 A159609 * A323631 A014333 A185618
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Mar 11 2007
STATUS
approved