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.

A296740 Expansion of e.g.f. sec(x*cosh(x)) (even powers only).

Original entry on oeis.org

1, 1, 17, 481, 26529, 2355841, 304490801, 54346519137, 12784369495873, 3834072115634689, 1427927160049839185, 646549058811594306017, 349778819738933516544737, 222822626689237030117683841, 165094750167986500169166495089, 140768231241374238855897822250081
Offset: 0

Views

Author

Ilya Gutkovskiy, Dec 19 2017

Keywords

Examples

			sec(x*cosh(x)) = 1 + x^2/2! + 17*x^4/4! + 481*x^6/6! + 26529*x^8/8! + ...
		

Crossrefs

Programs

  • Mathematica
    nmax = 15; Table[(CoefficientList[Series[Sec[x Cosh[x]], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]
  • PARI
    first(n) = x='x+O('x^(2*n-2)); vecextract(Vec(serlaplace(1/cos(x*cosh(x)))), (4^n - 1)/3) \\ Iain Fox, Dec 19 2017

Formula

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