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.

A337729 a(n) = (4*n+2)! * Sum_{k=0..n} 1 / (4*k+2)!.

Original entry on oeis.org

1, 361, 1819441, 43710250585, 3210080802962401, 563561785768079119561, 202205968733586788098486801, 132994909755454702268136738753721, 148026526435655214537290625514621562305, 262237873172349351865682580536682974917045801, 704454843460345510903820429747302209179158476142321
Offset: 0

Views

Author

Ilya Gutkovskiy, Sep 17 2020

Keywords

Crossrefs

Programs

  • Mathematica
    Table[(4 n + 2)! Sum[1/(4 k + 2)!, {k, 0, n}], {n, 0, 10}]
    Table[(4 n + 2)! SeriesCoefficient[(1/2) (Cosh[x] - Cos[x])/(1 - x^4), {x, 0, 4 n + 2}], {n, 0, 10}]
    Table[Floor[(1/2) (Cosh[1] - Cos[1]) (4 n + 2)!], {n, 0, 10}]
  • PARI
    a(n) = (4*n+2)!*sum(k=0, n, 1/(4*k+2)!); \\ Michel Marcus, Sep 17 2020

Formula

E.g.f.: (1/2) * (cosh(x) - cos(x)) / (1 - x^4) = x^2/2! + 361*x^6/6! + 1819441*x^10/10! + 43710250585*x^14/14! + ...
a(n) = floor(c * (4*n+2)!), where c = (cosh(1) - cos(1)) / 2 = A334364.