# Greetings from The On-Line Encyclopedia of Integer Sequences! http://oeis.org/ Search: id:a235166 Showing 1-1 of 1 %I A235166 #17 Jul 29 2018 08:10:10 %S A235166 1,1,4,16,88,640,5440,54400,620800,7966720,113651200,1783091200, %T A235166 30519808000,565916876800,11300689100800,241781039104000, %U A235166 5517822373888000,133795711025152000,3435107208822784000,93093522064998400000,2655675672405606400000,79546285618254315520000 %N A235166 E.g.f. satisfies: A'(x) = A(x)^2/A(-x)^2, with A(0)=1. %C A235166 See comments by Roland Bacher in A098777 which imply that this sequence is related to elliptic functions. %C A235166 Compare to: G'(x) = G(x)^2/G(-x) dx, which holds when G(x) = 1/(cos(x) - sin(x)), the e.g.f. of A001586 (Springer numbers). %H A235166 Paul D. Hanna and Vaclav Kotesovec, Table of n, a(n) for n = 0..200 (first 100 terms from Paul D. Hanna) %F A235166 E.g.f.: 1/(1 - 3*Series_Reversion( Integral 1/(1 - 9*x^2)^(2/3) dx ))^(1/3). %F A235166 E.g.f.: 1/F(x), where F(x) equals the e.g.f. of A098777 (pseudo-factorials). %F A235166 a(n) ~ 2^(-2/3) * n! * (9*GAMMA(2/3)^3/(2^(2/3)*Pi^2))^(n+1). - _Vaclav Kotesovec_, Feb 24 2014 %e A235166 E.g.f.: A(x) = 1 + x + 4*x^2/2! + 16*x^3/3! + 88*x^4/4! + 640*x^5/5! +... %e A235166 Related series. %e A235166 A(x)^2 = 1 + 2*x + 10*x^2/2! + 56*x^3/3! + 400*x^4/4! + 3440*x^5/5! +... %e A235166 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! +... %t A235166 kmax = 21; %t A235166 A[x_] = 1+x; Do[A[x_] = 1+Integrate[A[x]^2/A[-x]^2+O[x]^k, x] // Normal, {k, 1, kmax}]; %t A235166 CoefficientList[A[x], x] Range[0, kmax]! (* _Jean-François Alcover_, Jul 29 2018 *) %o A235166 (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)} %o A235166 for(n=0,21,print1(a(n),", ")) %o A235166 (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)} %o A235166 for(n=0, 20, print1(a(n), ", ")) %Y A235166 Cf. A001586, A098777. %K A235166 nonn %O A235166 0,3 %A A235166 _Paul D. Hanna_, Jan 04 2014 # Content is available under The OEIS End-User License Agreement: http://oeis.org/LICENSE