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.

A096716 Denominators of terms in series expansion of tan(sin(x)).

Original entry on oeis.org

1, 6, 40, 5040, 24192, 39916800, 6227020800, 37362124800, 355687428096000, 24329020081766400, 51090942171709440000, 2872446304320552960000, 5170403347776995328000000, 2177773890083670432153600000, 8841761993739701954543616000000, 249176928914482509628047360000000
Offset: 0

Views

Author

N. J. A. Sloane, Aug 15 2004

Keywords

Examples

			tan(sin(x)) = x + 1/6*x^3 - 1/40*x^5 - 107/5040*x^7 - 73/24192*x^9 + 41897/39916800*x^11 + ...
		

Crossrefs

Programs

  • Mathematica
    Denominator[Take[CoefficientList[Series[Tan[Sin[x]], {x,0,50}], x], {2, -1, 2}]] (* G. C. Greubel, Nov 21 2016 *)