%I #7 Oct 11 2016 02:28:02
%S 1,1,3,12,59,365,3088,38996,740467,19758435,690334227,30150545092,
%T 1599014847188,100918669227260,7463532377496184,638749818745548988,
%U 62599568958563222499,6962493257384838286351,872012649206880910980233,122142967347570710975572644,19017873674952442001496543299,3273737565549680748476297065053,619999424134642103881677814415308,128612434698134902683744004202176480
%N G.f. A(x) satisfies: Series_Reversion( A(x)/(1 - i*x + A(x)^2) ) = A(x)/(1 + i*x + A(x)^2), where odd function A(x) = Sum_{n>=1} a(n)*x^(2*n-1) and i^2 = -1.
%C Compare to the following related identities.
%C Let F(x) = x*C(x^2) such that C(x) = 1 + x*C(x)^2 is the g.f. of the Catalan numbers (A000108), then F(x) satisfies:
%C (1) Series_Reversion( F(x)/(1 - i*F(x) + F(x)^2) ) = F(x)/(1 + i*F(x) + F(x)^2),
%C (2) Series_Reversion( F(x)/(1 - i*x + x*F(x)) ) = F(x)/(1 + i*x + x*F(x)),
%C in which the inverse of the composite function equals the conjugate of that function.
%F G.f. A(x) satisfies: A(x)^2 = x*B1(x)/B2(x) - 1, where B1(x) + i*B2(x) = A(x)/(1 - i*x + A(x)^2).
%e G.f.: A(x) = x + x^3 + 3*x^5 + 12*x^7 + 59*x^9 + 365*x^11 + 3088*x^13 + 38996*x^15 + 740467*x^17 + 19758435*x^19 +...
%e such that the inverse of function A(x)/(1-i*x + A(x)^2) equals its conjugate.
%e RELATED SERIES.
%e A(x)^2 = x^2 + 2*x^4 + 7*x^6 + 30*x^8 + 151*x^10 + 920*x^12 + 7404*x^14 + 87774*x^16 + 1589695*x^18 + 41348962*x^20 +...
%e Let A(x)/(1 - i*x + A(x)^2) = B1(x) + i*B2(x),
%e A(x)/(1 - i*x + A(x)^2) = x + i*x^2 - x^3 - 2*i*x^4 + 3*x^5 + 3*i*x^6 - 4*x^7 - 8*i*x^8 + 11*x^9 + 9*i*x^10 - 13*x^11 - 35*i*x^12 + 46*x^13 + 13*i*x^14 - 26*x^15 - 193*i*x^16 + 239*x^17 - 177*i*x^18 + 151*x^19 - 1472*i*x^20 + 1711*x^21 - 3328*i*x^22 + 3479*x^23 - 14789*i*x^24 + 16500*x^25 - 45614*i*x^26 + 49093*x^27 - 173708*i*x^28 + 190208*x^29 - 598306*i*x^30 +...
%e then the series reversion of B1(x) + i*B2(x) equals the conjugate B1(x) - i*B2(x).
%e Note that A(x)^2 = x*B1(x)/B2(x) - 1, which holds because
%e B1(x) = A(x)*(1 + A(x)^2)/((1 + A(x)^2)^2 + x^2), and
%e B2(x) = A(x)*x/((1 + A(x)^2)^2 + x^2).
%o (PARI) {a(n) = my(Oxn=x*O(x^(2*n)), A = x +Oxn); for(i=1, 2*n, A = A + (x - subst(A/(1+I*x + A^2), x, A/(1-I*x + A^2) ))/2); polcoeff(A,2*n-1)}
%o for(n=1, 30, print1(a(n), ", "))
%K nonn
%O 1,3
%A _Paul D. Hanna_, Oct 10 2016