I'm not sure if this problem is linear or not. Anyway, let me state the problem first:
$$ \begin{align} P_n(a) &= \left(1 - \frac{a}{n} \times \frac{a-1}{n-1}\right) \times P_{n-1}(a) + \left(\frac{a}{n} \times \frac{a-1}{n-1}\right) \times P_{n-1}(a-2) \\ &where \space 0 \le a \le n, a \space and \space n \space are \space integers; \\ \\ P_n(a) &= 0 \\ &othertwise. \end{align} $$ provided that $$ P_1(0) = 0, \\ P_1(1) = 1, $$ and $$ P_2(0) = 0, \\ P_2(1) = 1, \\ P_2(0) = 0. $$
(I don't know whether $P_2$ would be necessary, but I provide them here in case they are.)
I have already read several answers (such as Solving recurrence relation in 2 variables, Solving a recurrence relation in 2 variables, and A recurrence relation on two variables), but it seems that they don't fit my problem at all.
In particular, answer in "A recurrence relation on two variables" requires me to "observe a pattern", which I can't for this problem.
Any hints would be appreciated. Thanks in advance!