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

A062806
a(n) = Sum_{i=1..n} i*n^i.
11
1, 10, 102, 1252, 18555, 324726, 6565468, 150652552, 3868151445, 109876543210, 3420886930626, 115835619046764, 4238148192940207, 166614350863692382, 7004068093591806840, 313512663723845890576, 14887093306681068252201, 747445606689889243214802
OFFSET
1,2
LINKS
FORMULA
a(n) = (n^(n+1)*(n^2-n-1) + n)/(n-1)^2 for n>1. - Dean Hickerson, Jun 26, 2001
a(n) = n * A068475(n). - Reinhard Zumkeller, Nov 22 2014
MATHEMATICA
Sum[i*n^i, {i, 1, n}]
PROG
(Haskell)
a062806 n = sum $ zipWith (*) [1..n] $ iterate (* n) n
-- Reinhard Zumkeller, Nov 22 2014
CROSSREFS
Cf. A068475.
Sequence in context: A147550 A162666 A061630 * A336952 A331475 A158240
KEYWORD
nonn,easy
AUTHOR
Olivier Gérard, Jun 23 2001
STATUS
approved