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

A013265
Expansion of e.g.f. tanh(log(x+1) - sinh(x)).
0
0, 0, -1, 1, -6, 23, -90, 509, -1960, 7251, 27720, -1167421, 20353608, -322757359, 4828920096, -72221046535, 1088176720800, -16527535024457, 253611377594496, -3894220888850401, 59159990565014280
OFFSET
0,5
EXAMPLE
-(1/2!)*x^2 + (1/3!)*x^3 - (6/4!)*x^4 + (23/5!)*x^5 - ...
MATHEMATICA
With[{nn=20}, Drop[CoefficientList[Series[Tanh[Log[x+1]-Sinh[x]], {x, 0, nn}], x] Range[0, nn]!, 2]] (* Harvey P. Dale, May 24 2017 *)
PROG
(PARI) x = 'x + O('x^30); concat([0, 0], Vec(serlaplace(tanh(log(x+1) - sinh(x))))) \\ Michel Marcus, Aug 03 2018
CROSSREFS
Sequence in context: A282710 A295132 A013261 * A228703 A344815 A220372
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
a(0)=a(1)=0 inserted and title improved by Sean A. Irvine, Aug 02 2018
STATUS
approved