OFFSET
0,2
FORMULA
E.g.f.: exp( (1-2*x-2*x^2 - sqrt(1-4*x))/(2*x^2) ).
a(n) ~ 2^(2*n+5/2) * n^(n-1) / exp(n-3). - Vaclav Kotesovec, Aug 22 2017
EXAMPLE
E.g.f.: A(x) = 1 + 2*x + 14*x^2/2! + 152*x^3/3! + 2236*x^4/4! + 41512*x^5/5! +...
such that log(A(x)) = C(x)^2 - 1,
log(A(x)) = 2*x + 5*x^2 + 14*x^3 + 42*x^4 + 132*x^5 + 429*x^6 + 1430*x^7 +...
where C(x) = 1 + x*C(x)^2 is the g.f. of A000108.
PROG
(PARI) {a(n)=local(C=1); for(i=0, n, C=1+x*C^2 +x*O(x^n)); n!*polcoeff(exp(C^2-1), n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n) = n!*polcoeff(exp((1-2*x - sqrt(1-4*x + x^3*O(x^n)))/(2*x^2) - 1), n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Dec 06 2014
STATUS
approved