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

A009045
Expansion of cos(sin(x))/exp(x).
2
1, -1, 0, 2, 0, -16, 24, 104, -256, -1600, 5632, 29952, -156032, -644736, 4761600, 18383616, -178225152, -645554176, 8081772544, 25645936640, -422364381184, -1160636121088, 25184814366720, 60217271582720, -1713906141986816
OFFSET
0,4
LINKS
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Cos[Sin[x]]/Exp[x], {x, 0, nn}], x]Range[0, nn]!] (* Harvey P. Dale, Dec 31 2012 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(cos(sin(x))/exp(x))) \\ G. C. Greubel, Jul 23 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cos(Sin(x))/Exp(x))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 23 2018
CROSSREFS
Sequence in context: A236755 A354416 A057375 * A060313 A371893 A015154
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved