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

A013068
Expansion of e.g.f. log(sinh(x) + cos(x)).
3
0, 1, -2, 6, -24, 140, -992, 8456, -84224, 957840, -12257792, 174293856, -2726068224, 46514037440, -859790139392, 17115342333056, -365041325441024, 8304761365213440, -200743379109281792, 5137820023434733056, -138802611894431514624, 3947233200665413667840, -117862929315296278740992
OFFSET
0,3
LINKS
EXAMPLE
x - 2/2!*x^2 + 6/3!*x^3 - 24/4!*x^4 + 140/5!*x^5 ...
MAPLE
seq(coeff(series(factorial(n)*log(sinh(x)+cos(x)), x, n+1), x, n), n=0..20); # Muniru A Asiru, Jul 30 2018
MATHEMATICA
CoefficientList[Series[Log[Sinh[x] + Cos[x]], {x, 0, 22}], x]Table[n!, {n, 0, 22}] (* Stefano Spezia, Oct 13 2022 *)
PROG
(PARI) my(x = 'x + O('x^30)); concat([0], Vec(serlaplace(log(sinh(x) + cos(x))))) \\ Michel Marcus, Jul 30 2018
CROSSREFS
Sequence in context: A216507 A366459 A205182 * A326780 A365976 A356858
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
a(0)=0 inserted and title improved by Sean A. Irvine, Jul 30 2018
STATUS
approved