OFFSET
0,3
FORMULA
E.g.f.: arcsin(arctan(x)) (odd powers only, absolute values).
E.g.f.: log((log(1 + x) - log(1 - x))/2 + sqrt(1 + (log(1 + x) - log(1 - x))^2/4)) (odd powers only).
EXAMPLE
arcsinh(arctanh(x)) = x/1! + x^3/3! + 13*x^5/5! + 341*x^7/7! + 18649*x^9/9! + 1599849*x^11/11! + ...
MATHEMATICA
nmax = 16; Table[(CoefficientList[Series[ArcSinh[ArcTanh[x]], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
nmax = 16; Table[(CoefficientList[Series[Log[(Log[1 + x] - Log[1 - x])/2 + Sqrt[1 + (Log[1 + x] - Log[1 - x])^2/4]], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 18 2017
STATUS
approved