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”).

A173796
Partial sums of A051489.
1
1, 5, 37, 405, 5797, 100729, 2042489, 47179065, 1220920889, 34959928189, 1096877292413, 37411749830381, 1378024126754541, 54510112209204673, 2304521044056503745, 103693069431259678913, 4947499083397499144385
OFFSET
0,2
LINKS
FORMULA
a(n) = Sum_{j=0..n} A051489(j). - G. C. Greubel, Jul 14 2021
MATHEMATICA
f[n_]:=(n^(n+2)+(n+2)^n); s=0; Table[s+=f[n], {n, 0, 40}]
PROG
(Magma) [(&+[j^(j+2) + (j+2)^j: j in [0..n]]): n in [0..40]]; // G. C. Greubel, Jul 14 2021
(Sage) [sum(j^(j+2) + (j+2)^j for j in (0..n)) for n in (0..40)] # G. C. Greubel, Jul 14 2021
CROSSREFS
Cf. A051489.
Sequence in context: A190628 A333285 A209671 * A352122 A292873 A161565
KEYWORD
nonn
AUTHOR
STATUS
approved