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

A297209
Expansion of e.g.f. log(1 + arcsin(x))*exp(-x).
3
0, 1, -3, 9, -32, 148, -853, 6027, -49576, 470624, -5005137, 59454923, -774282632, 11035740844, -169997137269, 2826070412955, -50256453936368, 954657085889760, -19247168446169665, 411277539407862707, -9269937746437524256, 220085825544691181500, -5483977295221312280757
OFFSET
0,3
EXAMPLE
log(1 + arcsin(x))*exp(-x) = x/1! - 3*x^2/2! + 9*x^3/3! - 32*x^4/4! + 148*x^5/5! - 853*x^6/6! + ...
MAPLE
a:=series(log(1+arcsin(x))*exp(-x), x=0, 23): seq(n!*coeff(a, x, n), n=0..22); # Paolo P. Lava, Mar 26 2019
MATHEMATICA
nmax = 22; CoefficientList[Series[Log[1 + ArcSin[x]] Exp[-x], {x, 0, nmax}], x] Range[0, nmax]!
nmax = 22; CoefficientList[Series[Log[1 - I Log[I x + Sqrt[1 - x^2]]] Exp[-x], {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) x='x+O('x^99); concat([0], Vec(serlaplace(exp(-x)*log(1+asin(x))))) \\ Altug Alkan, Dec 28 2017
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Dec 27 2017
STATUS
approved