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

A012289
Expansion of e.g.f.: sech(sin(x)*log(x+1)).
1
1, 0, 0, 0, -12, 60, -210, 1260, -1680, -66528, 854040, -9944880, 101761704, -561845856, -2175945408, 136635189600, -3242837295360, 53779020559744, -655909940939712, 4733948121328512, 61668138518505088
OFFSET
0,5
LINKS
EXAMPLE
E.g.f. = 1 - 12*x^4/4! + 60*x^5/5! - 210*x^6/6! + 1260*x^7/7! + ...
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Sech[Sin[x]Log[x+1]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, May 30 2015 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(1/cosh(sin(x)*log(x+1)))) \\ G. C. Greubel, Oct 26 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( 1/Cosh(Sin(x)*Log(x+1)) )); [Factorial(n-1)*b[n]: n in [1..m-1]]; // G. C. Greubel, Oct 26 2018
CROSSREFS
Sequence in context: A004302 A277106 A000554 * A012583 A009049 A012577
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Definition clarified by Harvey P. Dale, May 30 2015
STATUS
approved