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.

A354138 a(n) is the numerator of Sum_{k=0..n} (-1)^k / (2*k)!.

Original entry on oeis.org

1, 1, 13, 389, 4357, 1960649, 258805669, 47102631757, 11304631621681, 691843455246877, 1314502564969066301, 607300185015708631061, 335229702128671164345673, 217899306383636256824687449, 32946375125205802031892742289, 848027998784883070051677094421
Offset: 0

Views

Author

Ilya Gutkovskiy, May 24 2022

Keywords

Examples

			1, 1/2, 13/24, 389/720, 4357/8064, 1960649/3628800, 258805669/479001600, ...
		

Crossrefs

Programs

  • Mathematica
    Table[Sum[(-1)^k/(2 k)!, {k, 0, n}], {n, 0, 15}] // Numerator
    nmax = 15; CoefficientList[Series[Cos[Sqrt[x]]/(1 - x), {x, 0, nmax}], x] // Numerator
  • PARI
    a(n) = numerator(sum(k=0, n, (-1)^k/(2*k)!)); \\ Michel Marcus, May 24 2022

Formula

Numerators of coefficients in expansion of cos(sqrt(x)) / (1 - x).
Showing 1-1 of 1 results.