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

A012745
arcsinh(arctanh(x)*cos(x))=x-2/3!*x^3+28/5!*x^5-520/7!*x^7+59728/9!*x^9...
1
1, -2, 28, -520, 59728, -3842720, 963273920, -151564390016, 60786495498496, -18563464667034112, 10709479914780654592, -5442000735745663911936, 4284121800522638439469056, -3262273090906052050909765632
OFFSET
0,2
LINKS
FORMULA
a(n) ~ c * (-1)^n * (2*n)! / (sqrt(n) * r^(2*n)), where r = 0.867011256808704179615963011549544766868066027225... is the root of the equation arctan(r)*cosh(r) = 1, c = 0.741862954403555... . - Vaclav Kotesovec, Feb 04 2015
MATHEMATICA
nn = 20; Table[(CoefficientList[Series[ArcSinh[ArcTanh[x]*Cos[x]], {x, 0, 2*nn+1}], x] * Range[0, 2*nn+1]!)[[n]], {n, 2, 2*nn, 2}] (* Vaclav Kotesovec, Feb 04 2015 *)
CROSSREFS
Sequence in context: A271565 A241365 A240771 * A143585 A277309 A363305
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved