Here's a really neat thing I just found:
Consider, for instance, $$\sum _{k=-20}^{20} \left| x-k\right|$$
It's plot (after adjusting scaling) looks like
This looks suspiciously quadratic, and we can in fact overlay $y = x^2 + 420$ to find that they line up quite nicely:
.
Moreover, for integer values of $x$ within the domain $[-21,21]$, we find that the values reached by these two functions are equal.
I suspect that if we changed the summation step size to be smaller, we would find that it began to approximate even for non-integer values of $x$ as well.
Can someone explain why this property occurs?

Let's study what happens to the value of the summation as $x \rightarrow x+1$.
For every $k$ such that $k < x$, the value goes down by 1.
For every $k$ such that $k \geq x$, the value goes up by 1.
So $f(x+1)$ - $f(x) = \#(k \geq x) - \#(k < x)$.
Within $x \in [-20, 20]$, we have $\#(k < x) = 20 +x$ and $\#(k \geq x) = 21-x$. So $f(x+1) - f(x) = (21 - x) - (20 + x) = 2x + 1$.
Now let's set $g(x) = x^2 + c$, and study $g(x+1) - g(x)$. We have $(x+1)^2 + c - x^2 - c = 2x + 1$.
So within $x \in [-20, 20]$ we have $f(x+1) - f(x) = g(x+1) - g(x)$. So if we choose $c$ appropriately, for integer values $\in [-20, 20]$ we'll have $f = g$.