login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A009017 Expansion of e.g.f. cos(x*exp(x)). 8
1, 0, -1, -6, -23, -60, -1, 1526, 15121, 106344, 579359, 1870418, -8716487, -251210388, -3217413473, -31518844530, -245728084447, -1260370850736, 3075924210623, 208464730479658, 3846319817704841, 52691292058337940 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(n) = Sum_{k=0..n/2} binomial(n,2*k)*(2*k)^(n-2*k)*(-1)^k, n>0, a(0)=1. - Vladimir Kruchinin, Jun 29 2011
MATHEMATICA
With[{nmax = 50}, CoefficientList[Series[Cos[x*Exp[x]], {x, 0, nmax}], x]*Range[0, nmax]!] (* G. C. Greubel, Jul 21 2018 *)
PROG
(Maxima)
a(n):=if n=0 then 1 else sum(binomial(n, 2*k)*(2*k)^(n-2*k)*(-1)^k, k, 0, n/2); /* Vladimir Kruchinin, Jun 29 2011 */
(PARI) x='x+O('x^30); Vec(serlaplace(cos(x*exp(x)))) \\ G. C. Greubel, Jul 21 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cos(x*Exp(x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 21 2018
CROSSREFS
Sequence in context: A273500 A189713 A162267 * A273540 A273214 A273276
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)