OFFSET
0,3
LINKS
Paul D. Hanna, Table of n, a(n) for n = 0..100
EXAMPLE
E.g.f.: A(x) = 1 + x + 3*x^2/2! + 16*x^3/3! + 137*x^4/4! + 1746*x^5/5! + 30787*x^6/6! + 708289*x^7/7! + 20393697*x^8/8! + ...
Let B(x) = x*A(x) then
A(x) = 1 + B(x) + x*B(B(x))/2! + x^2*B(B(B(x)))/3! + x^3*B(B(B(B(x))))/4! + ... + x^(n-1)*B^n(x)/n! + ....
where
B(x) = x + 2*x^2/2! + 9*x^3/3! + 64*x^4/4! + 685*x^5/5! + 10476*x^6/6! + ... + A395120(n)*x^n/n! + ...
satisfies B(x) = Sum_{n>=0} B^n(x) * x^n/n!.
PROG
(PARI) \\ Routine to calculate the n-th iteration
{IT(n, F) = my(G=x); for(i=1, n, G = subst(F, x, G)); G}
\\ Get e.g.f. from iterations of B(x) (e.g.f. of A395120)
{a(n) = my(B=x); for(k=1, n, B = truncate(B) + x*O(x^k);
B = sum(m=0, k, x^m/m! * IT(m, B) ) ); polcoef(EGF=B/x, n)}
{upto(n) = a(n); Vec(serlaplace(EGF))}
upto(20)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, May 10 2026
STATUS
approved
