OFFSET
0,3
COMMENTS
Number of degree-2n permutations without odd cycles and with even number of even cycles. E.g.f.: (2-x^2)/(2*sqrt(1-x^2)). - Vladeta Jovovic, Aug 10 2007
FORMULA
a(n) ~ (2*n)^(2*n)/exp(2*n). - Vaclav Kotesovec, Oct 19 2013
Conjecture: a(n) +2*(-2*n^2+2*n-3)*a(n-1) +3*(2*n-3)*(2*n-5)*a(n-2)=0. - R. J. Mathar, Oct 05 2014
Conjecture: a(n) = (4*n-5)*[(2*n-3)!!]^2 +(2*n-3)^2*a(n-1).
EXAMPLE
cosh(log(x+1)-arctanh(x)) = 1+3/4!*x^4+90/6!*x^6+4725/8!*x^8+...
MATHEMATICA
nn=30; Insert[Select[Range[0, nn]!CoefficientList[Series[Cosh[Log[(1/(1-x^2))^(1/2)]], {x, 0, nn}], x], #>0&], 0, 2] (* Geoffrey Critzer, Mar 10 2013 *)
With[{nn=30}, Take[CoefficientList[Series[Cosh[Log[x+1]-ArcTanh[x]], {x, 0, nn}], x] Range[ 0, nn]!, {1, -1, 2}]] (* Harvey P. Dale, Mar 05 2023 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved