login

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

A009395
Expansion of e.g.f.: log(1 + tanh(x)*exp(x)).
1
0, 1, 1, -3, -2, 45, -74, -1113, 7288, 27465, -647894, 1393227, 59935228, -604628115, -4418438114, 143982353967, -381525392432, -30072901507695, 405576151229266, 4636550476777107, -187783513074129692, 514355533864732725
OFFSET
0,4
LINKS
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
Sequence in context: A321169 A093398 A002680 * A339513 A375252 A226769
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved