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.

A374653 a(n) = Sum_{k=1..n+1} (k + 1)(n - k + 1)!.

Original entry on oeis.org

5, 11, 27, 85, 359, 1953, 12907, 99461, 871455, 8538169, 92409683, 1094367597, 14071365511, 195177925025, 2904454929339, 46151637341653, 779850886057967, 13962610118134281, 264033196462146595, 5258262698750606909, 110001474536281307223
Offset: 1

Views

Author

Clark Kimberling, Jul 25 2024

Keywords

Crossrefs

Cf. A374652.

Programs

  • Mathematica
    t[n_] := Sum[ (k + 1)*(n - k + 1)!, {k, 1, n + 1}]
    Table[t[n], {n, 1, 30}]