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

A013014
Expansion of e.g.f. sin(sinh(x) + log(x+1)).
1
0, 2, -1, -5, 18, -93, 375, -1822, 10612, -71055, 573435, -5134802, 51076674, -550129175, 6366454731, -78567215552, 1026191286600, -14090173919607, 201683878875351, -2979525371014106, 44794367995995870, -669951379896225467, 9530970253376080047, -114149386121986516660
OFFSET
0,2
LINKS
EXAMPLE
2*x - 1/2!*x^2 - 5/3!*x^3 + 18/4!*x^4 - 93/5!*x^5 ...
MATHEMATICA
With[{nn=30}, Drop[CoefficientList[Series[Sin[Sinh[x] + Log[x+1]], {x, 0, nn}], x] Range[0, nn]!]] (* Vincenzo Librandi Jul 30 2018 *)
PROG
(PARI) x = 'x + O('x^30); concat([0], Vec(serlaplace(sin(sinh(x) + log(x+1))))) \\ Michel Marcus, Jul 30 2018
CROSSREFS
Sequence in context: A192264 A144054 A144058 * A012905 A254677 A184298
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
a(0)=0 inserted and title improved by Sean A. Irvine, Jul 30 2018
STATUS
approved