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

A009033
Expansion of e.g.f.: cos(log(1+x)/cosh(x)).
1
1, 0, -1, 3, 2, -20, -160, 1470, -1412, -17208, -311900, 5526620, -27336032, 64471680, -3978938184, 91242933600, -974175281648, 9223539606848, -209919913406800, 4978659648353904, -83195760215366560, 1324088843470088640
OFFSET
0,4
LINKS
MATHEMATICA
With[{nn=30}, CoefficientList[Series[Cos[Log[1+x]/Cosh[x]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Sep 10 2012 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(cos(log(1+x)/cosh(x)))) \\ G. C. Greubel, Jul 22 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Cos(Log(1+x)/Cosh(x)))); [Factorial(n-1)*b[n]: n in [1..m]]; // G. C. Greubel, Jul 22 2018
CROSSREFS
Sequence in context: A123225 A009028 A009022 * A298661 A323780 A350290
KEYWORD
sign,easy
AUTHOR
EXTENSIONS
Extended with signs by Olivier Gérard, Mar 15 1997
Definition clarified by Harvey P. Dale, Sep 10 2012
STATUS
approved