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.

A279306 Numerators of coefficients in expansion of (cosh(x))/(1 + cos(sqrt(x))).

Original entry on oeis.org

1, 1, 13, 377, 2551, 97711, 1686481, 447824017, 2522468131, 22174988051, 7129179751261, 1852107834946547, 34648570480339663, 828888380086508653, 273996480127378324681, 462007733994120695494433, 308514276772559961052721, 38471181499444351991058251
Offset: 0

Views

Author

Clark Kimberling, Dec 11 2016

Keywords

Examples

			(1/2) + (1/8)x + (13/48)x^2 + (377/5760)x^3 + ... ; 1/2, 1/8, 13/48, 377/5760, ... = A279306/A279239.
		

Crossrefs

Cf. A279239.

Programs

  • Mathematica
    z = 30; t = CoefficientList[Series[Cosh[x]/(1 + Cos[Sqrt[x]]), {x, 0, z}], x];
    Numerator[t]   (* A279306 *)
    Denominator[t] (* A279239 *)