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

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