Given a function $f(x)$ such that: $f(1) + f(2) + f(3)+\cdots+f(n) = n^2f(n)$
Find the value of $f(2013)$. It is given that $f(1) = 2014$.
I tried attempting the question as a bottom-up DP, but soon realized the numbers are too irregular and large to deal with in a mechanical fashion.
Set $n=m,m+1$ one by one to find $f(m+1)$ in terms of $f(m)$
$$\sum_{r=1}^{m-1}f(r)=(m^2-1)f(m)$$
$$\{(m+1)^2-1\}f(m+1)=\sum_{r=1}^{m}f(r)=\sum_{r=1}^{m-1}f(r)+f(m)=(m^2-1)f(m)+f(m)$$
$$\iff m(m+2)f(m+1)=m^2f(m)\iff f(m+1)=\frac m{m+2}f(m)$$ for $m>0$