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

A096141
a(n) = sum of n n-th powers starting from n^n.
1
1, 13, 216, 4578, 119525, 3729451, 135771160, 5658574916, 265921407297, 13918657338925, 803220053336096, 50674352524725590, 3470170166345203477, 256369124879898560271, 20325382637400264402000
OFFSET
1,2
LINKS
FORMULA
a(n) = n! * [x^n] exp(n*x)*(exp(n*x) - 1)/(exp(x) - 1). - Ilya Gutkovskiy, Apr 07 2018
EXAMPLE
a(4) = 4^4 +5^4 + 6^4 +7^4 = 4578.
MATHEMATICA
Table[Total[Range[n, 2n-1]^n], {n, 20}] (* Harvey P. Dale, Aug 23 2019 *)
PROG
(PARI) a(n)=sum(k=n, 2*n-1, k^n)
CROSSREFS
Cf. A031971.
Sequence in context: A132542 A069989 A140517 * A218475 A294982 A320627
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jul 16 2004
EXTENSIONS
Extended by Ray Chandler, Jul 17 2004
STATUS
approved