login

Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.

A297213
Expansion of e.g.f. log(1 + arctanh(x))*exp(-x).
4
0, 1, -3, 10, -40, 213, -1383, 11002, -100616, 1062625, -12508067, 164543938, -2368224032, 37311284645, -634900302775, 11658800863330, -229004281334768, 4804124787023265, -106986109080667043, 2524701174424967130, -62860054802079553016, 1648303843512405478485
OFFSET
0,3
LINKS
EXAMPLE
log(1 + arctanh(x))*exp(-x) = x/1! - 3*x^2/2! + 10*x^3/3! - 40*x^4/4! + 213*x^5/5! - 1383*x^6/6! + ...
MAPLE
S:= series(log(1+arctanh(x))*exp(-x), x, 51):
seq(coeff(S, x, j)*j!, j=0..50); # Robert Israel, Jul 09 2018
MATHEMATICA
nmax = 21; CoefficientList[Series[Log[1 + ArcTanh[x]] Exp[-x], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 21; CoefficientList[Series[Log[1 + (Log[1 + x] - Log[1 - x])/2] Exp[-x], {x, 0, nmax}], x] Range[0, nmax]!
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Dec 27 2017
STATUS
approved