%I #15 Jan 28 2014 06:11:30
%S 1,1,2,10,56,496,4592,58240,753536,12428416,206700032,4194910720,
%T 85291222016,2054623707136,49390297628672,1376983620812800,
%U 38210541166493696,1209980100295622656,38070418025153626112,1349585751030491054080,47479274652991633227776
%N E.g.f. satisfies: A'(x) = A(x)^4 * A(-x)^2 with A(0) = 1.
%F E.g.f. A(x) satisfies: 3 - 15*A(x) + 20*A(x)^2 - (8 - 15*x)*A(x)^5 = 0.
%F E.g.f.: 1/(1 - Series_Reversion( Integral (1-x^2)^2 dx )).
%F E.g.f.: 1 + Series_Reversion( Integral (1+2*x)^2/(1+x)^6 dx ).
%F Recurrence: 4096*(100*n - 341)*a(n) = 30720*(25*n - 83)*a(n-1) + 640*(4500*n^3 - 35595*n^2 + 92875*n - 81419)*a(n-2) - 1800*(1500*n^3 - 13480*n^2 + 40050*n - 39221)*a(n-3) - 81*(5*n - 19)*(5*n - 18)*(5*n - 17)*(5*n - 16)*(100*n - 241)*a(n-4). - _Vaclav Kotesovec_, Jan 28 2014
%F a(n) ~ n! * (5/2)^(1/3) * (15/8)^n / (GAMMA(1/3) * n^(2/3)). - _Vaclav Kotesovec_, Jan 28 2014
%e E.g.f.: A(x) = 1 + x + 2*x^2/2! + 10*x^3/3! + 56*x^4/4! + 496*x^5/5! +...
%e Related series.
%e A(x)^2 = 1 + 2*x + 6*x^2/2! + 32*x^3/3! + 216*x^4/4! + 1952*x^5/5! +...
%e A(x)^4 = 1 + 4*x + 20*x^2/2! + 136*x^3/3! + 1160*x^4/4! + 12064*x^5/5! +...
%e A(x)^5 = 1 + 5*x + 30*x^2/2! + 230*x^3/3! + 2160*x^4/4! + 24200*x^5/5! +...
%e where 3 - 15*A(x) + 20*A(x)^2 = (8 - 15*x)*A(x)^5.
%e Note that 1 - 1/A(x) is an odd function that begins:
%e 1 - 1/A(x) = x + 4*x^3/3! + 136*x^5/5! + 12544*x^7/7! + 2240896*x^9/9! +...
%e where Series_Reversion(1 - 1/A(x)) = x - 2*x^3/3 + x^5/5.
%t CoefficientList[1/(1 - InverseSeries[Series[x - 2*x^3/3 + x^5/5, {x, 0, 20}], x]),x] * Range[0, 20]! (* _Vaclav Kotesovec_, Jan 28 2014 *)
%o (PARI) /* By definition, A'(x) = A(x)^4 * A(-x)^2: */
%o {a(n)=local(A=1); for(i=0, n, A=1+intformal(A^4*subst(A,x,-x)^2 +x*O(x^n) )); n!*polcoeff(A, n)}
%o for(n=0,25,print1(a(n),", "))
%o (PARI) /* By equation: 3 - 15*A(x) + 20*A(x)^2 - (8 - 15*x)*A(x)^5 = 0 */
%o {a(n)=local(A=1);for(i=0,n,A=(3+20*A^2-(8-15*x)*A^5)/15 +x*O(x^n));n!*polcoeff(A,n)}
%o for(n=0,25,print1(a(n),", "))
%o (PARI) /* E.g.f. 1/(1 - Series_Reversion(Integral (1-x^2)^2 dx)): */
%o {a(n)=local(A=1); A=1/(1-serreverse(x-2*x^3/3+x^5/5 +x^2*O(x^n)));n!*polcoeff(A, n)}
%o for(n=0,25,print1(a(n),", "))
%o (PARI) /* E.g.f. 1 + Series_Reversion(Integral (1+2*x)^2/(1+x)^6 dx): */
%o {a(n)=local(A=1); A=1+serreverse( intformal((1+2*x)^2/(1+x +x^2*O(x^n))^6 ));n!*polcoeff(A, n)}
%o for(n=0,25,print1(a(n),", "))
%Y Cf. A235322.
%K nonn
%O 0,3
%A _Paul D. Hanna_, Jan 05 2014