OFFSET
1,3
LINKS
Paul D. Hanna, Table of n, a(n) for n = 1..300
FORMULA
a(n) ~ c * d^n / n^(3/2), where d = 4.3788729685558146277374586... and c = 0.0933818743555997288781743... . - Vaclav Kotesovec, May 03 2016
EXAMPLE
G.f.: A(x) = x + x^2 + 2*x^3 + 5*x^4 + 15*x^5 + 49*x^6 + 168*x^7 + 596*x^8 + 2170*x^9 + 8063*x^10 + 30451*x^11 + 116545*x^12 +...
where A( x - A(x^3)/x ) = x.
RELATED SERIES.
Let B(x) be the series reversion of g.f. A(x), A(B(x)) = x, then
B(x) = x - x^2 - x^5 - 2*x^8 - 5*x^11 - 15*x^14 - 49*x^17 - 168*x^20 - 596*x^23 - 2170*x^26 - 8063*x^29 - 30451*x^32 - 116545*x^35 +...
such that B(x) = x - A(x^3)/x.
PROG
(PARI) {a(n) = my(A=x); for(i=1, n, A = serreverse( x - subst(A, x, x^3 +x^3*O(x^n))/x )); polcoeff(A, n)}
for(n=1, 50, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Apr 29 2016
STATUS
approved