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.

A062814 a(n) = Sum_{i=0..n-1} i * (n - i)^(n - i).

Original entry on oeis.org

0, 1, 6, 38, 326, 3739, 53808, 927420, 18578248, 423649565, 10828720882, 306545462810, 9518362652994, 321605286435431, 11745699035775884, 461063683165975712, 19357125741005727156, 865493449685182242777
Offset: 1

Views

Author

Olivier Gérard, Jun 23 2001

Keywords

Comments

Partial sums of A001923. - Amiram Eldar, Mar 26 2022

Crossrefs

Programs

  • Mathematica
    Table[Sum[i*(n - i)^(n - i), {i, 0, -1 + n}], {n, 1, 18}]
  • PARI
    a(n) = sum(i=0, n-1, i*(n-i)^(n-i)); \\ Michel Marcus, Mar 26 2019

Formula

From Amiram Eldar, Mar 26 2022: (Start)
a(n) = Sum_{k=0..n-1} A001923(k).
Limit_{n->oo} a(n+2)/a(n+1) - a(n+1)/a(n) = e (Cusumano, 2013). (End)