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.

A349928 a(n) = Sum_{k=0..n} (k+n)^k.

Original entry on oeis.org

1, 3, 20, 246, 4481, 107129, 3157836, 110504876, 4473749677, 205615442135, 10574135574388, 601527803412298, 37500537926181449, 2542321872054610333, 186209553386691383388, 14653121207168215024624, 1232879877057607865696085, 110444572988776439826640683
Offset: 0

Views

Author

Seiichi Manyama, Dec 05 2021

Keywords

Crossrefs

Programs

  • Mathematica
    a[0] = 1; a[n_] := Sum[(k + n)^k, {k, 0, n}]; Array[a, 18, 0] (* Amiram Eldar, Dec 05 2021 *)
  • PARI
    a(n) = sum(k=0, n, (k+n)^k);

Formula

a(n) ~ 2^n * n^n. - Vaclav Kotesovec, Dec 06 2021