This infinite system of linear equations:
$$ \begin{array}( 2x_1=1 \\ 3x_1+4x_2=2 \\ 4x_1+5x_2+6x_3=3 \\ \cdots \end{array} $$
In other words, this is particular case of a system:
$$ \begin{array}( a_{11}x_1=b_1 \\ a_{21}x_1+a_{22}x_2=b_2 \\ a_{31}x_1+a_{32}x_2+a_{33}x_3=b_3 \\ \cdots \\ a_{m1}x_1+a_{m2}x_2+ \cdots + a_{mn}x_n + \cdots=b_m \\ \cdots \end{array} $$
With the coefficients given by:
$$a_{mn}=m + n~~~~~~~~~b_m=m$$
The systems seems to give the following sequence of solutions:
$$x_n= \left| \left( \begin{matrix} \frac{1}{2} \\ n \end{matrix} \right) \right|=\left(\frac{1}{2}, \frac{1}{8}, \frac{1}{16}, \frac{5}{128}, \cdots \right)$$
How can I prove that it's true?
Why does it happen? Can other fractional binomial coefficients be obtained this way (and how)? By 'this way' I mean a triangular system with simple regular sequence of integer coefficients.
I had some thoughts, and that's what I tried. Let's assume, that $x_n$ I found are really binomial coefficients. Then for $x_m$ we will have:
$$x_m= \left| \left( \begin{matrix} \frac{1}{2} \\ m \end{matrix} \right) \right|=\frac{1/2 (1-1/2)(2-1/2)\cdots (m-1-1/2)}{m!}=\frac{m-3/2}{m}x_{m-1}$$
$$x_m= \left(1- \frac{3}{2m} \right)x_{m-1}=x_1-\frac{3}{2}\left(\frac{x_1}{2}+\frac{x_2}{3}+\cdots+ \frac{x_{m-1}}{m} \right)$$
$$x_m=\frac{1}{2}-\frac{3}{2}\left(\frac{x_1}{2}+\frac{x_2}{3}+\cdots+ \frac{x_{m-1}}{m} \right)$$
On the other hand, from the $m^{th}$ equation we can derive:
$$x_m= \frac{b_m}{a_{mm}}-\frac{1}{a_{mm}}\left(a_{m1}x_1+a_{m2}x_2+\cdots+ a_{m,m-1}x_{m-1} \right)$$
$$x_m= \frac{1}{2}-\frac{1}{2m}\left((m+1)x_1+(m+2)x_2+\cdots+ (m+m-1)x_{m-1} \right)$$
I don't see how to get this relation into the same form as the previous one. Maybe I should modify it somehow.
Alright, I figured it out. First, we write the recurrence relation for the absolute value of the binomial coefficients:
$$x_m= \left| \left( \begin{matrix} \frac{1}{2} \\ m \end{matrix} \right) \right|=\frac{1/2 (1-1/2)(2-1/2)\cdots (m-1-1/2)}{m!}=\frac{m-3/2}{m}x_{m-1}$$
$$x_1=\frac{1}{2}$$
Next, we work with our system.
We subtract the equation number $m-2$ from the equation number $m-1$ to show:
$$x_1+x_2+\cdots + x_{m-2}=1-2(m-1)x_{m-1}$$
Now we add this equation to the equation number $m-1$ and obtain:
$$(m+1)x_1+(m+2)x_2+\cdots + (2m-2)x_{m-2}+(2m-2)x_{m-1}=m-2(m-1)x_{m-1}$$
$$(m+1)x_1+(m+2)x_2+\cdots + (2m-2)x_{m-2}=m-(4m-4)x_{m-1}$$
Now we use the RHS from this equation in the equation number $m$:
$$m-(4m-4)x_{m-1}+(2m-1)x_{m-1}+2mx_m=m$$
Finally we obtain:
$$x_m=\frac{2m-3}{2m}x_{m-1}$$
$$x_1=\frac{1}{2}$$