|
|
A012313
|
|
Expansion of e.g.f.: cosh(arcsin(x)*log(x+1)).
|
|
1
|
|
|
1, 0, 0, 0, 12, -60, 450, -2940, 26768, -239904, 2668680, -29987760, 392312712, -5250012768, 78929218368, -1221015912480, 20751350980608, -363744987018624, 6898607729825472, -135014880247703424
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
0,5
|
|
LINKS
|
|
|
EXAMPLE
|
E.g.f. = 1 + 12*x^4/4! - 60*x^5/5! + 450*x^6/6! - 2940*x^7/7! + ...
|
|
MAPLE
|
seq(coeff(series(factorial(n)*cosh(arcsin(x)*log(x+1)), x, n+1), x, n), n = 0 .. 20); # Muniru A Asiru, Oct 25 2018
|
|
MATHEMATICA
|
With[{nn=20}, CoefficientList[Series[Cosh[ArcSin[x]Log[x+1]], {x, 0, nn}], x] Range[0, nn]!] (* Harvey P. Dale, Aug 02 2017 *)
|
|
PROG
|
(PARI) x='x+O('x^30); Vec(serlaplace(cosh(asin(x)*log(x+1)))) \\ G. C. Greubel, Oct 25 2018
(Magma) m:=30; R<x>:=PowerSeriesRing(Rationals(), m); b:=Coefficients(R!( Cosh(Arcsin(x)*Log(x+1)) )); [Factorial(n-1)*b[n]: n in [1..m-1]]; // G. C. Greubel, Oct 25 2018
|
|
CROSSREFS
|
|
|
KEYWORD
|
sign
|
|
AUTHOR
|
Patrick Demichel (patrick.demichel(AT)hp.com)
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|