I was learning integer partition of a number n into k parts(with minimum 1 in each part) and came across this recurrence :
part(n,k) = part(n-1,k-1) + part(n-k,k)
But, I cannot understand the logic behind this recurrence. Can someone please help me visualize this recurrence?
$$ $$
Note that the partitions of $P(8,3)$ that have smallest integer part equal to one correspond to the integer partitions of $P(7,2)$ whereas the partitions with smallest integer part $>1$ correspond to the partitions of $P(5,3)$: \begin{align*} 4+2+2=(3+1+1)+3\\ 3+3+2=(2+2+1)+3 \end{align*}