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

A012181
arctanh(tan(arctanh(x))) = x + (6/3!)*x^3 + (184/5!)*x^5 + 13360/7!*x^7 + ...
0
1, 6, 184, 13360, 1770880, 373587200, 115086003200, 48784879769600, 27245388132352000, 19392357120188416000, 17137521906875269120000, 18411376349575875461120000, 23632217190341837269237760000, 35718167409293109428879360000000
OFFSET
0,2
FORMULA
a(n) ~ (2*n)! / (tanh(Pi/4))^(2*n+1). - Vaclav Kotesovec, Feb 05 2015
MAPLE
a:= n-> (t-> t!*coeff(series(arctanh(tan(arctanh(x))), x, t+1), x, t))(2*n+1):
seq(a(n), n=0..15); # Alois P. Heinz, Aug 17 2018
MATHEMATICA
nn = 20; Table[(CoefficientList[Series[ArcTanh[Tan[ArcTanh[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: A089905 A222887 A012208 * A012224 A274272 A175237
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
STATUS
approved