OFFSET
0,3
LINKS
Robert Israel, Table of n, a(n) for n = 0..224
FORMULA
E.g.f.: arctanh(arctan(x)) (odd powers only, absolute values).
E.g.f.: i*(log(2 + i*log(1 - x) - i*log(1 + x)) - log(2 - i*log(1 - x) + i*log(1 + x)))/2, where i is the imaginary unit (odd powers only).
EXAMPLE
arctan(arctanh(x)) = x/1! + 8*x^5/5! + 112*x^7/7! + 8192*x^9/9! + 599808*x^11/11! + 80010240*x^13/13! + ...
MAPLE
S:= series(arctan(arctanh(x)), x, 52):
seq(coeff(S, x, 2*i+1)*(2*i+1)!, i=0..25); # Robert Israel, Dec 13 2017
MATHEMATICA
nmax = 17; Table[(CoefficientList[Series[ArcTan[ArcTanh[x]], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
nmax = 17; Table[(CoefficientList[Series[I (Log[2 + I Log[1 - x] - I Log[1 + x]] - Log[2 - I Log[1 - x] + I Log[1 + x]])/2, {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 13 2017
STATUS
approved