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

A009055
Expansion of e.g.f. cos(sinh(tan(x))), even terms only.
1
1, -1, -11, -253, -9463, -491609, -30257347, -1480493589, 177416283793, 125705754161615, 53738108098148101, 22477151211215445843, 9977406312993326490265, 4802660699035958910256759
OFFSET
0,3
LINKS
MAPLE
seq(coeff(series(factorial(n)*cos(sinh(tan(x))), x, n+1), x, n), n=0..30, 2); # Muniru A Asiru, Jul 24 2018
MATHEMATICA
With[{nmax = 60}, CoefficientList[Series[Cos[Sinh[Tan[x]]], {x, 0, nmax}], x]*Range[0, nmax]!][[1 ;; -1 ;; 2]] (* G. C. Greubel, Jul 23 2018 *)
PROG
(PARI) x='x+O('x^60); v=Vec(serlaplace(cos(sinh(tan(x))))); vector(#v\2, n, v[2*n-1]) \\ G. C. Greubel, Jul 23 2018
CROSSREFS
Sequence in context: A346896 A012154 A377424 * A009067 A128683 A292335
KEYWORD
sign
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved