How could I use telescoping to find $f(1) + f(2) + f(3) + \cdots + f(100) $?
Let $f(x)$ be a function defined by $f(x) = x^6 - 3x^5 + 5x^4 - 5x^3 + 3x^2 - x$. Compute the sum of the base-ten digits of the sum $f(1) + f(2) + f(3) + \cdots + f(100)$.
I tried telescoping by creating a new function $g(x)$ such that $f(x) = g(x) - g(x-1) $, which would then lead to the initial sum becoming $g(100) - g(0)$, but I can't figure out what $g(x)$ is.
Any help is appreciated!