OFFSET
1,3
COMMENTS
Equals row sums and column 1 of triangle A120568 of self-compositions of A(x).
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..200
EXAMPLE
The successive self-compositions of the g.f. A(x) begin:
A(x) = x + x^2 + 2*x^3 + 5*x^4 + 15*x^5 + 53*x^6 + 215*x^7 + 976*x^8+...
A(A(x)) = x + 2*x^2 + 6*x^3 + 21*x^4 + 82*x^5 + 351*x^6 + 1630*x^7 +...
A(A(A(x))) = x + 3*x^2 + 12*x^3 + 54*x^4 + 263*x^5 + 1364*x^6 +...
A(A(A(A(x)))) = x + 4*x^2 + 20*x^3 + 110*x^4 + 644*x^5 + 3956*x^6 +...
A(A(A(A(A(x))))) = x + 5*x^2 + 30*x^3 + 195*x^4 + 1335*x^5 +9505*x^6+...
These g.f.s form the columns of triangle A120568.
PROG
(PARI) {a(n)=local(F=x+x*O(x^n), G=F, H=x); for(m=1, n, for(k=1, m, G=subst(F, x, G); H=H+x^k*truncate(G) +x*O(x^n)); F=H; G=x+x^2*O(x^m); H=G; ); polcoeff(F, n)}
for(n=1, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 14 2006
STATUS
approved