We are provided with a recurrence relation as follows:-
$F(n,k) = F(n,k-1) + F(n-k+1,k)$
$F(n,1) = n $
$F(X,k) = 0$ if $ (X\leq0)$
I need help in solving this for k=1 to 10 only
Edit:- I have added values I computed using a simple program upto n=25 and k=25( i wanted a general way for all k , but question demands only for k=1 to 10) .
