|
Search: id:A135036
|
|
|
| A135036 |
|
Sums of the products of n consecutive pairs of numbers. |
|
+0 1
|
|
| 0, 6, 26, 68, 140, 250, 406, 616, 888, 1230, 1650, 2156, 2756, 3458, 4270, 5200, 6256, 7446, 8778, 10260, 11900, 13706, 15686, 17848, 20200, 22750, 25506, 28476, 31668, 35090, 38750, 42656, 46816, 51238, 55930, 60900, 66156, 71706, 77558, 83720
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
FORMULA
|
a(n) = 1*2 + 3*4 + 5*6 + ... + 2n*(2n+1)
a(n) = (4n^3-3n^2-n)/3. For n=3, this gives (4*27-3*9-3)/3 = 78/3 = 26.
O.g.f.: 2*x^2*(3+x)/(-1+x)^4 . a(n) = 2*A016061(n-1) . - R. J. Mathar (mathar(AT)strw.leidenuniv.nl), Feb 14 2008
|
|
EXAMPLE
|
For n = 3, the sum of the first 3 pairs is 0*1+2*3+4*5 = 26, the 3rd entry in the sequence.
|
|
PROGRAM
|
(PARI) sumprod(n) = { local(x, s=0); forstep(x=0, n, 2, s+=x*(x+1); print1(s", ") ) }
|
|
CROSSREFS
|
Sequence in context: A075456 A166728 A136892 this_sequence A166796 A001701 A094162
Adjacent sequences: A135033 A135034 A135035 this_sequence A135037 A135038 A135039
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
Cino Hilliard (hillcino368(AT)hotmail.com), Feb 10 2008
|
|
|
Search completed in 0.002 seconds
|