OFFSET
0,4
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..175
FORMULA
E.g.f. satisfies: A(x) = 1 + Integral( A(x*A(x)) dx).
EXAMPLE
E.g.f.: A(x) = 1 + x + x^2/2! + 3*x^3/3! + 12*x^4/4! + 84*x^5/5! + 774*x^6/6! + ...
such that
A(x*A(x)) = A'(x) = 1 + x + 3*x^2/2! + 12*x^3/3! + 84*x^4/4! + 774*x^5/5! + ...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1+intformal(subst(A, x, x*A +x*O(x^n)))); n!*polcoeff(A, n)}
for(n=0, 25, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Nov 14 2013
STATUS
approved