OFFSET
0,1
FORMULA
a(n) ~ (2*n)! / r^(2*n+1), where r = 0.47191303538345047716706116017105574144998... is the root of the equation sinh(r)+tan(r) = 1. - Vaclav Kotesovec, Feb 05 2015
MATHEMATICA
nn = 20; Table[(CoefficientList[Series[ArcTanh[Sinh[x] + Tan[x]], {x, 0, 2*nn+1}], x] * Range[0, 2*nn+1]!)[[n]], {n, 2, 2*nn, 2}] (* Vaclav Kotesovec, Feb 05 2015 *)
With[{nn=30}, Take[CoefficientList[Series[ArcTanh[Sinh[x]+Tan[x]], {x, 0, nn}], x] Range[0, nn-1]!, {2, -1, 2}]] (* Harvey P. Dale, Jul 14 2024 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved