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

A013064
arctanh(sinh(x)+arctan(x))=2*x+15/3!*x^3+713/5!*x^5+82481/7!*x^7...
0
2, 15, 713, 82481, 17926289, 6251997081, 3199183099305, 2256926363091921, 2099642392012962209, 2490468291041882743721, 3668423635534285779378041, 6569558349739213693016437665
OFFSET
0,1
FORMULA
a(n) ~ (2*n)! / r^(2*n+1), where r = 0.5079168569437311537765199369846945055215... is the root of the equation sinh(r)+arctan(r) = 1. - Vaclav Kotesovec, Feb 05 2015
MATHEMATICA
nn = 20; Table[(CoefficientList[Series[ArcTanh[ArcTan[x] + Sinh[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: A015185 A203467 A071627 * A013095 A208051 A038017
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved