OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..250
FORMULA
G.f.: A(x) = (1/x)*Series_Reversion(x/G(x)) where G(x) = A(x/G(x)) is the g.f. of A183606 and satisfies: [x^(n+1)] G(x)^n = n*(n+1)*{[x^n] G(x)^n} for n>=0.
G.f. A(x) satisfies: [x^n] exp( n * (x + x^2*A(x)'/A(x)) ) / A(x) = 0 for n > 0. - Paul D. Hanna, Oct 21 2020
a(n) ~ c * n! * (n-1)!, where c = 2.0524259870985684724972435... - Vaclav Kotesovec, Aug 24 2017
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 20*x^3 + 249*x^4 + 5087*x^5 + 155180*x^6 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=1/(1-x - x*deriv(x^2*A'/(A+x*O(x^n))))); polcoeff(A, n)}
for(n=0, 31, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Aug 11 2012
STATUS
approved