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”).

A012119
arctanh(arcsin(arcsinh(x)))=x+2/3!*x^3+32/5!*x^5+1000/7!*x^7+68480/9!*x^9...
0
1, 2, 32, 1000, 68480, 6561664, 1023602304, 201257787648, 56084851257344, 18730102842232832, 8177799266538749952, 4153222601561664323584, 2616197218964411007008768, 1879040755111699467662589952
OFFSET
0,2
FORMULA
a(n) ~ (2*n)! / (sinh(sin(1)))^(2*n+1). - Vaclav Kotesovec, Feb 05 2015
MATHEMATICA
nn = 20; Table[(CoefficientList[Series[ArcTanh[ArcSin[ArcSinh[x]]], {x, 0, 2*nn+1}], x] * Range[0, 2*nn+1]!)[[n]], {n, 2, 2*nn, 2}] (* Vaclav Kotesovec, Feb 05 2015 *)
CROSSREFS
Sequence in context: A012233 A321712 A211488 * A282835 A012198 A012114
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved