login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified September 21 04:44 EDT 2024. Contains 376079 sequences. (Running on oeis4.)