Suppose we have some formula $f(x)$ and we are able to work out the sum of first $F(n)=\sum_{i=0}^nf(i)$ with some nice formula $F(n)$; Now suppose we want to work out tha following sum $G(n)=\sum_{i=0}^ni*f(i)$ Is there any way to work out / derive the $G(n)$ as some nice formula? Maybe the $G(n)$ would be based on formula $F(n)$?
Thank you
Maybe Abel's partial summation may help here.
Now set $a_i =f(i)$ and $b_i = i$ and note that for $i=0$ you have $if(i)=0$, so counting starts from $i=1$. Using your notation you have $A_i = F(i) = f(1) + \cdots + f(i)$ and hence
$$G(n)=\sum_{i=1}^ni\cdot f(i) = nF(n)-\sum_{i=1}^{n-1} F(i)$$