OFFSET
1,3
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..500
EXAMPLE
G.f.: A(x) = x + x^2 + 2*x^3 + 11*x^4 + 64*x^5 + 446*x^6 + 3420*x^7 + 28428*x^8 + 252072*x^9 + 2360784*x^10 + 23187228*x^11 + 237586156*x^12 + ...
RELATED SERIES.
A(A(x)) = x + 2*x^2 + 6*x^3 + 33*x^4 + 216*x^5 + 1612*x^6 + 13204*x^7 + 116272*x^8 + 1086394*x^9 + 10675146*x^10 + ...
A(A(A(x))) = x + 3*x^2 + 12*x^3 + 72*x^4 + 518*x^5 + 4184*x^6 + 36776*x^7 + 345365*x^8 + 3424756*x^9 + 35575824*x^10 + ...
A(A(A(x)))^2 = x^2 + 6*x^3 + 33*x^4 + 216*x^5 + 1612*x^6 + 13204*x^7 + 116272*x^8 + ...
PROG
(PARI) {a(n) = my(A, V=[0, 1, 1]); for(i=1, n, V=concat(V, 0); A = Ser(V);
V[#V] = polcoef(x + x^2 - subst(A, x, A) + subst(A, x, subst(A, x, A))^2, #V-1)/2 ); V[n+1]}
for(n=1, 50, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jun 29 2025
STATUS
approved
