OFFSET
0,3
LINKS
Vaclav Kotesovec, Table of n, a(n) for n = 0..300
FORMULA
G.f. satisfies: A(x) = (1 - sqrt(1 - 4*x*A(x^2))) / (2*x).
a(n) ~ c * d^n / n^(3/2), where d = 4.26223122317069895..., c = 0.643574350110058603... . - Vaclav Kotesovec, Aug 08 2014
EXAMPLE
G.f.: A(x) = 1 + x + 3*x^2 + 7*x^3 + 23*x^4 + 69*x^5 + 233*x^6 + 791*x^7 +...
Related expansion:
A(x)^2 = 1 + 2*x + 7*x^2 + 20*x^3 + 69*x^4 + 226*x^5 + 791*x^6 +...
PROG
(PARI) {a(n)=local(A=1+x); for(i=1, n, A=subst(A, x, x^2+x*O(x^n))+x*A^2); polcoeff(A, n)}
for(n=0, 30, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 05 2012
STATUS
approved