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

A297214
Expansion of e.g.f. exp(cos(sin(x))-1) (even powers only).
2
1, -1, 8, -127, 3523, -146964, 8538477, -655457233, 63974756924, -7713566822979, 1123255462229507, -193995005614903728, 39147722262966666217, -9115873617718182207793, 2423565558533387761866928, -728969374928760685473620951, 246100624914698937364249220851
OFFSET
0,3
FORMULA
a(n) = (2*n)! * [x^(2*n)] exp(cos(sin(x))-1).
EXAMPLE
exp(cos(sin(x))-1) = 1 - x^2/2! + 8*x^4/4! - 127*x^6/6! + 3523*x^8/8! - 146964*x^10/10! + ...
MATHEMATICA
nmax = 16; Table[(CoefficientList[Series[Exp[Cos[Sin[x]] - 1], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Dec 27 2017
STATUS
approved