Jarle said:
This is an arithmetic sequence, you should know a formula. If not it should be easy to split the terms into two sums, each having easy formulas.
First look at the sum from 1 to n of 4i.
This is:
4 + 8 + 12 + 16 + 20 + ... + 4n
Now, notice how the sum of the 1st and the n-th terms is 4+4n = 4*(n+1).
Notice how the sum of the 2nd and the (n-1)-th terms is 8+4*(n-1) = 4*(n+1)
Notice how the sum of the 3rd and the (n-2)-th terms is 4*(n+1)
Notice how the sum of the 4th and the (n-3)-th terms is 4*(n+1)
If n is even, then the you can see how the above sum must be (n/2)*4*(n+1).
This equals 2*n*(n+1). We can see, however, that this actually works for all n, even or odd, in the following way:
If n=1, then 2*n*(n+1) = 4, which is correct. Now, let n=k, where k is some integer. Consider what happens when when change from n=k to n=k+1. Then the above expression goes from 2*k*(k+1) to 2*(k+1)*(k+2). But notice, this second expression is exactly 4*(k+1) more.
In other words, [2*(k+1)*(k+2)] - [2*k*(k+1)] = 4*(k+1). But 4*(k+1) is exactly the amount we add when we go from n=k to n=k+1. Thus the expression 2*n*(n+1) must be correct for any n.
This type of sum is called an arithmetic sum. The sum from i=1 to n of i equals n*(n+1)/2. This is something you should remember, or else remember how to derive. Once you know this, it is easy to find an expression for any other arithmetic sum. For example, the sum from 1 to n of a*i - b will simply equal a*(n*(n+1)/2) - n*b. But you should not memorize this. You should memorize the manipulations you are allowed to do with series and sequences.
The sum from 1 to n of a*f(i), where f is a function of i, and 'a' is a constant, will always equal 'a' times the sum from 1 to n of f(i).
The sum from 1 to n of f(i) + g(i), where f and g are a functions of i, will always equal [the sum from 1 to n of g(i)] plus [the sum from 1 to n of f(i)].
Specifically, the sum from 1 to n of f(i) + b, where f is a functions of i, and 'b' is a constant, will always equal n*b plus the sum from 1 to n of f(i).