OFFSET
0,5
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..448
FORMULA
a(n) ~ n! * (-1)^(n+1) * cos(1) / 2. - Vaclav Kotesovec, Jan 23 2015
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Sinh[Log[1+x]]Cos[x], {x, 0, nn}], x]Range[0, nn]!] (* Harvey P. Dale, Mar 09 2012 *)
CoefficientList[Series[(x*(2 + x)*Cos[x])/(2*(1 + x)), {x, 0, 20}], x] * Range[0, 20]! (* Vaclav Kotesovec, Jan 23 2015 *)
PROG
(PARI) x='x+O('x^30); concat([0], Vec(serlaplace(sinh(log(1+x))*cos(x)))) \\ G. C. Greubel, Jan 21 2018
CROSSREFS
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved