cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A096717 Numerators of terms in series expansion of arcsin(arctan(x)).

Original entry on oeis.org

1, -1, 13, -341, 18649, -177761, 1087433, -4043494549, 1674761567, -284891766539657, 106410874319325461, -48402125366670946877, 26344930021064765797249, -27048608191991004321089, 6237195766537863970288933, -16102066950215127630856787159, 2258820895862623437612519923989
Offset: 0

Views

Author

N. J. A. Sloane, Aug 15 2004

Keywords

Examples

			arcsin(arctan(x)) = x - 1/6*x^3 + 13/120*x^5 - 341/5040*x^7 + 18649/362880*x^9 - 177761/4435200*x^11 + ...
		

Crossrefs

Programs

  • Mathematica
    Numerator[Take[CoefficientList[Series[ArcSin[ArcTan[x]], {x,0,50}], x], {2, -1, 2}]] (* G. C. Greubel, Nov 17 2016 *)