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.

A296791 Expansion of e.g.f. sech(x*sec(x)) (even powers only).

Original entry on oeis.org

1, -1, -7, -1, 3121, 132959, -1261591, -889217057, -79029091743, 5889540654911, 3289057601679065, 395957721046153023, -120519140613246313327, -71865162873642033099361, -9267049529998625177827639, 8376363338336819515365004319, 5693280488360087435524724806849
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 20 2017

Keywords

Examples

			sech(x*sec(x)) = 1 - x^2/2! - 7*x^4/4! - x^6/6! + 3121*x^8/8! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 16; Table[(CoefficientList[Series[Sech[x Sec[x]], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]

Formula

a(n) = (2*n)! * [x^(2*n)] sech(x*sec(x)).