OFFSET
0,3
COMMENTS
LINKS
Paul D. Hanna and Vaclav Kotesovec, Table of n, a(n) for n = 0..200 (first 100 terms from Paul D. Hanna)
FORMULA
E.g.f.: 1/(1 - 3*Series_Reversion( Integral 1/(1 - 9*x^2)^(2/3) dx ))^(1/3).
E.g.f.: 1/F(x), where F(x) equals the e.g.f. of A098777 (pseudo-factorials).
a(n) ~ 2^(-2/3) * n! * (9*GAMMA(2/3)^3/(2^(2/3)*Pi^2))^(n+1). - Vaclav Kotesovec, Feb 24 2014
EXAMPLE
E.g.f.: A(x) = 1 + x + 4*x^2/2! + 16*x^3/3! + 88*x^4/4! + 640*x^5/5! +...
Related series.
A(x)^2 = 1 + 2*x + 10*x^2/2! + 56*x^3/3! + 400*x^4/4! + 3440*x^5/5! +...
1/A(x) = 1 - x - 2*x^2/2! + 2*x^3/3! + 16*x^4/4! - 40*x^5/5! - 320*x^6/6! +...+ A098777(n)*x^n/n! +...
MATHEMATICA
kmax = 21;
A[x_] = 1+x; Do[A[x_] = 1+Integrate[A[x]^2/A[-x]^2+O[x]^k, x] // Normal, {k, 1, kmax}];
CoefficientList[A[x], x] Range[0, kmax]! (* Jean-François Alcover, Jul 29 2018 *)
PROG
(PARI) {a(n)=local(A=1+x); for(i=0, n, A=1+intformal(A^2/subst(A, x, -x +x*O(x^n))^2 +x*O(x^n) )); n!*polcoeff(A, n)}
for(n=0, 21, print1(a(n), ", "))
(PARI) {a(n)=local(A=1); A=1/(1-3*serreverse(intformal(1/(1-9*x^2 +x*O(x^n))^(2/3))))^(1/3); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 04 2014
STATUS
approved