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

A302610
Expansion of e.g.f. -log(1 - x)*arcsinh(x).
1
0, 0, 2, 3, 4, 20, 158, 819, 3624, 33984, 427482, 3819915, 29665260, 404822340, 6948032310, 88407058635, 991515848400, 17715286764000, 383952670412850, 6349179054589875, 93532380775766100, 2063197602667372500, 53913667654307868750, 1098018631195048591875
OFFSET
0,3
FORMULA
E.g.f.: -log(1 - x)*log(x + sqrt(1 + x^2)).
EXAMPLE
-log(1 - x)*arcsinh(x) = 2*x^2/2! + 3*x^3/3! + 4*x^4/4! + 20*x^5/5! + 158*x^6/6! + 819*x^7/7! + 3624*x^8/8! + ...
MAPLE
a:=series(-log(1-x)*arcsinh(x), x=0, 24): seq(n!*coeff(a, x, n), n=0..23); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 23; CoefficientList[Series[-Log[1 - x] ArcSinh[x], {x, 0, nmax}], x] Range[0, nmax]!
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 10 2018
STATUS
approved