OFFSET
0,4
LINKS
Stefano Spezia, Table of n, a(n) for n = 0..400
EXAMPLE
-(1/2!)*x^2 + (3/3!)*x^3 - (6/4!)*x^4 + (15/5!)*x^5 - ...
MATHEMATICA
CoefficientList[Series[ArcTan[Log[x+1] - ArcSinh[x]], {x, 0, 23}], x]Table[n!, {n, 0, 23}] (* Stefano Spezia, Jul 18 2022 *)
With[{nn=30}, CoefficientList[Series[ArcTan[Log[x+1]-ArcSinh[x]], {x, 0, nn}], x] Range[ 0, nn]!] (* Harvey P. Dale, Nov 03 2022 *)
PROG
(PARI) my(x = 'x + O('x^30)); concat([0, 0], Vec(serlaplace(atan(log(x+1) - asinh(x))))) \\ Michel Marcus, Aug 03 2018
CROSSREFS
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
More terms from Stefano Spezia, Jul 18 2022
STATUS
approved