[go: up one dir, main page]

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

A012280
Expansion of e.g.f.: sech(exp(x)*log(x+1)).
1
1, 0, -1, -3, -6, 30, 270, 1400, -3080, -86184, -893760, -754688, 61595424, 1201314400, 5341239904, -68598744240, -2871938780672, -25391249097088, 31527888993024, 10819112145879168, 155954430765392768
OFFSET
0,4
LINKS
EXAMPLE
E.g.f. = 1 - x^2/2! - 3*x^3/3! - 6*x^4/4! + 30*x^5/5! - ...
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Sech[Exp[x]Log[x+1]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jan 21 2013 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(1/cosh(exp(x)*log(x+1)))) \\ G. C. Greubel, Oct 28 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( 1/Cosh(Exp(x)*Log(x+1)) )); [Factorial(n-1)*b[n]: n in [1..m-1]]; // G. C. Greubel, Oct 28 2018
CROSSREFS
Sequence in context: A088436 A088506 A061137 * A282132 A002164 A331661
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Definition clarified by Harvey P. Dale, Jan 21 2013
STATUS
approved