login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A012345
Coefficients in the expansion sinh(arcsin(x)*arcsin(x)) = 2*x^2/2!+8*x^4/4!+248*x^6/6!+11328*x^8/8!+...
1
2, 8, 248, 11328, 849312, 94857600, 14819214720, 3091936512000, 831657655349760, 280473756197529600, 115967597965430077440, 57712257892456911912960, 34039765801079493369569280
OFFSET
0,1
LINKS
FORMULA
a(n) ~ sqrt(Pi) * cosh(Pi^2/4) * (2*n)! / (2 * n^(3/2)). - Vaclav Kotesovec, Feb 08 2015
EXAMPLE
sinh(arcsin(x)*arcsin(x)) = 2*x^2/2! + 8*x^4/4! + 248*x^6/6! + 11328*x^8/8! + ...
MATHEMATICA
nn = 20; Table[(CoefficientList[Series[Sinh[ArcSin[x]^2], {x, 0, 2*nn}], x] * Range[0, 2*nn]!)[[n]], {n, 1, 2*nn+1, 2}] (* Vaclav Kotesovec, Feb 08 2015 *)
PROG
(PARI) x='x+O('x^50); v=Vec(serlaplace(sinh(asin(x)*asin(x)))); vector(#v\2, n, v[2*n-1]) \\ G. C. Greubel, Apr 11 2017
CROSSREFS
Sequence in context: A028985 A067583 A120378 * A012341 A299374 A203317
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved