OFFSET
0,3
LINKS
Robert Israel, Table of n, a(n) for n = 0..410
EXAMPLE
E.g.f. = x + 2/2!*x^2 + 5/3!*x^3 + 20/4!*x^4 + 133/5!*x^5 ...
MAPLE
S:= series(arcsin(arcsin(x)*exp(x)), x, 51):
seq(coeff(S, x, j)*j!, j=0..50); # Robert Israel, Oct 25 2018
MATHEMATICA
With[{nmax = 30}, CoefficientList[Series[ArcSin[ArcSin[x]*Exp[x]], {x, 0, nmax}], x]*Range[0, nmax]!] (* G. C. Greubel, Oct 25 2018 *)
PROG
(PARI) x='x+O('x^30); concat([0], Vec(serlaplace( asin(asin(x)*exp(x))))) \\ G. C. Greubel, Oct 25 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!(Arcsin(Arcsin(x)*Exp(x)))); [0] cat [Factorial(n)*b[n]: n in [1..m-1]]; // G. C. Greubel, Oct 25 2018
CROSSREFS
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
a(0) inserted and title improved by Sean A. Irvine, Jul 17 2018
STATUS
approved