OFFSET
1,2
COMMENTS
With alternating signs, expansion of tanh(arctan(x)).
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..100
EXAMPLE
tan(arctanh(x)) = x + 4*x^3/3! + 80*x^5/5! + 3680*x^7/7! + 300800*x^9/9! + ...
MAPLE
seq(coeff(series(factorial(n)*tan(arctanh(x)), x, n+1), x, n), n = 1 .. 32, 2); # Muniru A Asiru, Aug 16 2018
MATHEMATICA
nmax=20; Table[(CoefficientList[Series[Tan[ArcTanh[x]], {x, 0, 2*nmax}], x] Range[0, 2 nmax - 1]!)[[n]], {n, 2, 2 nmax, 2}] (* Vincenzo Librandi, Aug 16 2018 *)
PROG
(Magma) m:=35; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(1+Tan(Argtanh(x)))); [Factorial(n-1)*b[n]: n in [2..m by 2]]; // Vincenzo Librandi, Aug 16 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Ralf Stephan, Dec 28 2004
EXTENSIONS
Example corrected by Vaclav Kotesovec, Aug 16 2018
STATUS
approved