OFFSET
1,2
COMMENTS
Sum of next n n-th powers.
EXAMPLE
a(1) = 1^1 = 1; a(2) = 2^2 + 3^2 = 13; a(3) = 4^3 + 5^3 + 6^3 = 405, a(4) = 7^4 + 8^4 + 9^4 + 10^4 = 23058.
MATHEMATICA
i1 := n(n-1)/2+1; i2 := n(n-1)/2+n; Table[Sum[i^n, {i, i1, i2}], {n, 20}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Apr 25 2002
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org) and Zak Seidov, Sep 24 2002
STATUS
approved