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-1 of 1 results.

A302579 Expansion of e.g.f. exp(cosh(x)/cos(x)-1) (even powers only).

Original entry on oeis.org

1, 2, 24, 632, 28784, 1991552, 193410624, 24993180032, 4134783110144, 850499728758272, 212579274719007744, 63381008507902595072, 22200896917210834817024, 9019985888570141052280832, 4204783981520054371872374784, 2228007853953954434037178007552
Offset: 0

Views

Author

Ilya Gutkovskiy, Apr 10 2018

Keywords

Examples

			exp(cosh(x)/cos(x)-1) = 1 + 2*x^2/2! + 24*x^4/4! + 632*x^6/6! + 28784*x^8/8! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 15; Table[(CoefficientList[Series[Exp[Cosh[x]/Cos[x] - 1], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]

Formula

a(n) = (2*n)! * [x^(2*n)] exp(cosh(x)/cos(x)-1).
Showing 1-1 of 1 results.