OFFSET
0,4
LINKS
Matthew House, Table of n, a(n) for n = 0..451
FORMULA
E.g.f.: log(1 + tanh(x)*exp(x)).
MAPLE
egf:= log(1+tanh(x)*exp(x)):
S:= series(egf, x, 61):
seq(coeff(S, x, j)*j!, j=0..60); # Robert Israel, Aug 05 2015
MATHEMATICA
Range[0, 25]! CoefficientList[Series[Log[1 + Tanh[x] Exp[x]], {x, 0, 25}], x] (* Vincenzo Librandi, Aug 04 2015 *)
PROG
(PARI) Vec(serlaplace(log(tanh(x)*exp(x) + 1))) \\ Charles R Greathouse IV, Sep 26 2017
CROSSREFS
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved