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

A009572
Expansion of e.g.f. sinh(log(1+x))*cos(x).
1
0, 1, -1, 0, -6, 35, -195, 1358, -10892, 98037, -980325, 10783564, -129402834, 1682236855, -23551315879, 353269738170, -5652315810840, 96089368784297, -1729608638117193, 32862564124226648, -657251282484533150
OFFSET
0,5
LINKS
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
Sequence in context: A274373 A328331 A346318 * A027202 A026934 A171311
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved