login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A349928
a(n) = Sum_{k=0..n} (k+n)^k.
0
1, 3, 20, 246, 4481, 107129, 3157836, 110504876, 4473749677, 205615442135, 10574135574388, 601527803412298, 37500537926181449, 2542321872054610333, 186209553386691383388, 14653121207168215024624, 1232879877057607865696085, 110444572988776439826640683
OFFSET
0,2
FORMULA
a(n) ~ 2^n * n^n. - Vaclav Kotesovec, Dec 06 2021
MATHEMATICA
a[0] = 1; a[n_] := Sum[(k + n)^k, {k, 0, n}]; Array[a, 18, 0] (* Amiram Eldar, Dec 05 2021 *)
PROG
(PARI) a(n) = sum(k=0, n, (k+n)^k);
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Dec 05 2021
STATUS
approved