[go: up one dir, main page]

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

A296728
Expansion of e.g.f. arcsin(x*cos(x)) (odd powers only).
4
1, -2, -16, 8, 12672, 571264, -44351360, -12355211520, -452681248768, 478190483394560, 132554796040912896, -18854516962334277632, -27186884683859043123200, -5502410397289951851773952, 6273206188133923322747420672, 5389680791235134726930445369344
OFFSET
0,2
FORMULA
a(n) = (2*n+1)! * [x^(2*n+1)] arcsin(x*cos(x)).
EXAMPLE
arcsin(x*cos(x)) = x/1! - 2*x^3/3! - 16*x^5/5! + 8*x^7/7! + 12672*x^9/9! + ...
MATHEMATICA
nmax = 16; Table[(CoefficientList[Series[ArcSin[x Cos[x]], {x, 0, 2 nmax + 1}], x] Range[0, 2 nmax + 1]!)[[n]], {n, 2, 2 nmax, 2}]
PROG
(PARI) first(n) = x='x+O('x^(2*n)); vecextract(Vec(serlaplace(asin(x*cos(x)))), (4^n - 1)/3) \\ Iain Fox, Dec 19 2017
KEYWORD
sign
AUTHOR
Ilya Gutkovskiy, Dec 19 2017
STATUS
approved