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

A012457
sin(arctan(x)^2)=2/2!*x^2-16/4!*x^4+248/6!*x^6-3456/8!*x^8...
2
2, -16, 248, -3456, -406368, 123982080, -31807263360, 9173875200000, -3114459024453120, 1251070155460915200, -591321674803999426560, 326012628782956574638080, -207713640106463567695994880
OFFSET
0,1
LINKS
FORMULA
Sum_{n>=0} a(n) x^(2*n+2)/(2*n+2)! = sin(arctan(x)^2). - Robert Israel, Apr 04 2016
MAPLE
S:= series(g, x, 52):
seq(coeff(S, x, 2*j)*(2*j)!, j=1..25); # Robert Israel, Apr 04 2016
MATHEMATICA
With[{nn=30}, Take[CoefficientList[Series[Sin[ArcTan[x]^2], {x, 0, nn}], x] Range[0, nn]!, {3, -1, 2}]] (* Harvey P. Dale, Aug 20 2014 *)
CROSSREFS
Sequence in context: A009233 A188560 A012462 * A138764 A009833 A009044
KEYWORD
sign
AUTHOR
Patrick Demichel (patrick.demichel(AT)hp.com)
EXTENSIONS
Definition clarified by Harvey P. Dale, Aug 20 2014
STATUS
approved