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

A009142
Expansion of e.g.f. cosh(sin(sin(x))), even powers only.
1
1, 1, -7, 73, -687, -19471, 2839561, -260138759, 22560194593, -1856685484703, 115492830956953, 5211807618131753, -4918276086306813839, 1664523472944706933841, -477486870436056568353623
OFFSET
0,3
LINKS
MAPLE
seq(coeff(series(factorial(n)*cosh(sin(sin(x))), x, n+1), x, n), n=0..30, 2); # Muniru A Asiru, Jul 31 2018
MATHEMATICA
With[{nmax = 60}, CoefficientList[Series[Cosh[Sin[Sin[x]]], {x, 0, nmax}], x]*Range[0, nmax]!][[1 ;; -1 ;; 2]] (* G. C. Greubel, Jul 30 2018 *)
PROG
(PARI) x='x+O('x^60); v=Vec(serlaplace(cosh(sin(sin(x))))); vector(#v\2, n, v[2*n-1]) \\ G. C. Greubel, Jul 31 2018
CROSSREFS
Sequence in context: A308418 A240195 A025592 * A155614 A113033 A093675
KEYWORD
sign
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved