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.

A214401 Denominator of Sum_{k=0..n} n^k/k!.

Original entry on oeis.org

1, 1, 1, 3, 12, 5, 72, 315, 2240, 567, 1814400, 77, 239500800, 868725, 7175168, 49116375, 2092278988800, 14889875, 3201186852864000, 14849255421, 3783802880000, 3543572316375, 562000363888803840000, 2505147019375, 496358721386591551488
Offset: 1

Views

Author

Jonathan Sondow, Jul 15 2012

Keywords

Comments

Apparently, the three sequences T_1(n) = Sum_{k=1..n} n^(k-1)/k!, T_2(n) = Sum_{k=0..n} n^k/k!, and T_3(n) = Sum_{k=1..n} n^k/k!, with numerators in A119029, A120266, and A120267, respectively, have the same denominators, listed in the current sequence. This, however, is not immediately obvious. - Petros Hadjicostas, May 12 2020

Crossrefs

Numerators are A120266.

Programs

  • Mathematica
    Denominator[Table[Sum[n^k/k!, {k, 0, n}], {n, 1, 30}]]
  • PARI
    a(n) = denominator(sum(k=0, n, n^k/k!)); \\ Michel Marcus, Apr 20 2021

Formula

a(n) = n!/A214402(n).