Find the sum of the series and show your process for finding each term leading to the final sum.
∑5k=3(−2k+5)
sumfor(k, 1, 5, 3*(-2*k+5)) = (9, 3, -3, -9, -15) = -15
thanks