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.

Showing 1-2 of 2 results.

A296841 Expansion of e.g.f. sin(x*tan(x/2)) (even powers only).

Original entry on oeis.org

0, 1, 1, -12, -193, -2365, -18552, 500689, 48649969, 2981261772, 169237306055, 9187565146331, 427287357700176, 6011297159973313, -2887128048794477663, -711942625068679870620, -132369975517302093882097, -22968753773651295426439021
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 21 2017

Keywords

Examples

			sin(x*tan(x/2)) = x^2/2! + x^4/4! - 12*x^6/6! - 193*x^8/8! - 2365*x^10/10! - 18552*x^12/12! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 17; Table[(CoefficientList[Series[Sin[x Tan[x/2]], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]

Formula

a(n) = (2*n)! * [x^(2*n)] sin(x*tan(x/2)).

A024248 Expansion of sin(tan(x)*x)/2.

Original entry on oeis.org

0, 1, 4, -12, -2272, -166960, -13136448, -1177426880, -116571720704, -11452654888704, -669616618900480, 214088681811547136, 155062926684742508544, 76744341986122463531008, 36379718195920790292840448
Offset: 0

Views

Author

Keywords

Crossrefs

Cf. A009515.

Programs

  • Mathematica
    Sin[ Tan[ x ]*x ]/2 (* Even Part *)

Extensions

Extended with signs Mar 1997
Showing 1-2 of 2 results.