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.

A301942 Expansion of e.g.f. arcsin(x)/cos(x) (odd powers only).

Original entry on oeis.org

1, 4, 44, 1016, 42384, 2908544, 306305856, 46659144832, 9760451385600, 2683733034474496, 936308392553036800, 403127865773461755904, 209562975305232836300800, 129255511221696545852424192, 93252273300325219683758915584, 77766048645578119241905858314240
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 09 2018

Keywords

Examples

			arcsin(x)/cos(x) = x/1! + 4*x^3/3! + 44*x^5/5! + 1016*x^7/7! + 42384*x^9/9! + ...
		

Crossrefs

Programs

  • 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}]

Formula

a(n) = (2*n+1)! * [x^(2*n+1)] arcsin(x)/cos(x).