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

A012316
Expansion of e.g.f.: exp(arcsin(x)*exp(x)).
2
1, 1, 3, 11, 49, 265, 1635, 11531, 90241, 785777, 7464483, 77615947, 870363377, 10565245561, 137126790723, 1910729723787, 28271549169025, 446132922949985, 7432565149802947, 131334851550591627
OFFSET
0,3
LINKS
EXAMPLE
E.g.f. = 1+x+3/2!*x^2+11/3!*x^3+49/4!*x^4+265/5!*x^5...
MAPLE
seq(coeff(series(factorial(n)*exp(arcsin(x)*exp(x)), x, n+1), x, n), n = 0 .. 20); # Muniru A Asiru, Oct 25 2018
MATHEMATICA
With[{nn=20}, CoefficientList[Series[Exp[ArcSin[x]Exp[x]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Jul 31 2014 *)
PROG
(PARI) x='x+O('x^30); Vec(serlaplace(exp(asin(x)*exp(x)))) \\ G. C. Greubel, Oct 25 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Exp(Arcsin(x)*Exp(x)))); [Factorial(n-1)*b[n]: n in [1..m-1]]; // G. C. Greubel, Oct 25 2018
CROSSREFS
Sequence in context: A001339 A307030 A335788 * A261600 A331617 A193319
KEYWORD
nonn
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Definition clarified by Harvey P. Dale, Jul 31 2014
STATUS
approved