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

A296982
Expansion of e.g.f. arctanh(log(1 + x)).
3
0, 1, -1, 4, -18, 118, -930, 8888, -98504, 1248784, -17790480, 281590032, -4901447232, 93064850448, -1914144990576, 42396742460928, -1006101059149440, 25466710774651776, -684902462140798848, 19503187752732408576, -586221766070655432960
OFFSET
0,4
EXAMPLE
arctanh(log(1 + x)) = x^1/1! - x^2/2! + 4*x^3/3! - 18*x^4/4! + 118*x^5/5! - 930*x^6/6! + ...
MAPLE
a:=series(arctanh(log(1+x)), x=0, 21): seq(n!*coeff(a, x, n), n=0..20); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 20; CoefficientList[Series[ArcTanh[Log[1 + x]], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 20; CoefficientList[Series[Log[1 + Log[1 + x]]/2 - Log[1 - Log[1 + x]]/2, {x, 0, nmax}], x] Range[0, nmax]!
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Dec 22 2017
STATUS
approved