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

A009133
Expansion of e.g.f. cosh(log(1+x)*cos(x)).
1
1, 0, 1, -3, 0, 0, 90, -420, 3192, -36792, 344640, -3424080, 40458792, -515760960, 6995451736, -102430659240, 1603858275328, -26656736919808, 469564051796928, -8742335523613056, 171465068564306560, -3533692765499863680
OFFSET
0,4
LINKS
FORMULA
a(n) ~ (-1)^n * n! / (2 * Gamma(cos(1)) * n^(1 - cos(1))). - Vaclav Kotesovec, Jul 28 2018
MATHEMATICA
With[{nmax = 30}, CoefficientList[Series[Cosh[Log[1 + x]*Cos[x]], {x, 0, nmax}], x]*Range[0, nmax]!] (* G. C. Greubel, Jul 28 2018 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(cosh(log(1+x)*cos(x)))) \\ G. C. Greubel, Jul 28 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cosh(Log(1+x)*Cos(x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 28 2018
CROSSREFS
Sequence in context: A215679 A160537 A215516 * A180515 A009138 A175562
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
STATUS
approved