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.

A064068 Generalized Euler number c(7,n).

Original entry on oeis.org

1, 64, 15872, 9493504, 10562158592, 18878667833344, 49488442978598912, 178867627497727197184, 852509723495811705208832, 5180564635674867885905281024, 39094622102339738427522497380352, 358686739310560735577543742129700864, 3931974790759726002374736527410407145472
Offset: 0

Views

Author

Eric W. Weisstein, Aug 31 2001

Keywords

Crossrefs

Row 7 of A235605.

Programs

  • Maple
    egf := sec(7*x)*(cos(x) + cos(3*x) - cos(5*x)): ser := series(egf, x, 24):
    seq((2*n)!*coeff(ser, x, 2*n), n = 0..11); # Peter Luschny, Nov 21 2021
  • Mathematica
    Range[0, 24, 2]! CoefficientList[Series[Sec[7 x] (Cos[x] + Cos[3 x] - Cos[5 x]), {x, 0, 24}], x^2] (* Matthew House, Oct 25 2024 *)

Formula

a(n) = (2*n)!*[x^(2*n)](sec(7*x)*(cos(x) + cos(3*x) - cos(5*x))). - Peter Luschny, Nov 21 2021