Given the following recurrence relations for $k$ terms:
$$ A_n^1 = A_{n-1}^1 + A_{n-1}^2 $$ $$ A_n^2 = A_{n-1}^1 + A_{n-1}^3 $$ $$ A_n^3 = A_{n-1}^2 + A_{n-1}^4 $$ $$ \vdots $$ $$ A_n^{k-1} = A_{n-1}^{k-2} + A_{n-1}^k $$ $$ A_n^k = A_{n-1}^{k-1} $$
Can we express each $A_n^i$ (for $i \in \{1, 2, \dots, k\}$) as a linear recurrence relation based on its own previous terms? If so, how to find the recurrence relation for each $A_n^i$ for any k, is there a general formula?
Additionally, can we prove that when each term $A_n^i$ is expressed as a recurrence relation based on its own previous terms, all of the $A_n^i$ have the same recurrence relation coefficients?
I hope i am clear.
Edit: Lets take $k=3$, then: $$ A_n^1 = A_{n-1}^1 + A_{n-1}^2 $$ $$ A_n^2 = A_{n-1}^1 + A_{n-1}^3 $$ $$ A_n^3 = A_{n-1}^2 $$
After some manipulation we get: $$ A_n^1 = A_{n-1}^1 + 2A_{n-2}^1 - A_{n-3}^1 $$ $$ A_n^2 = A_{n-1}^2 + 2A_{n-2}^2 - A_{n-3}^2 $$ $$ A_n^3 = A_{n-1}^3 + 2A_{n-2}^3 - A_{n-3}^3 $$ So we can express each $A_n^i$ using only their own previous terms and each $A_n^i$ has the same recurrence relation coefficients $[1,2,-1]$ for $k=3$.
We can express each $A_n^i$ using only their own previous terms for $k=4$ too. And in this case too each $A_n^i$ has the same recurrence relation coefficients, which is $[1,3,-2,-1]$.
It seems that for any k it is true that we can express each $A_n^i$ only their own previous terms and that each $A_n^i$ has the same recurrence relation coefficients for a particular k. Also i think the recurrence coefficient for a particular k is exactly the kth row in the following table:
Here, $T_n^i$ means $i$th column and $n$th row. $$T_n^1 = 1, \quad T_1^i = 0 \quad \text{for} \ i > 1$$ $$T_n^{2i} = T_{n-1}^{2i} + T_{n-1}^{2i-1}$$ $$T_n^{2i+1} = -T_{n-1}^{2i}$$
$$ \begin{array}{c|cccccccc} n & 1 & 2 & 3 & 4 & 5 & 6 & 7 \\ \hline 1 & 1 & 0 & 0 & 0 & 0 & 0 & 0 \\ 2 & 1 & 1 & 0 & 0 & 0 & 0 & 0 \\ 3 & 1 & 2 & -1 & 0 & 0 & 0 & 0 \\ 4 & 1 & 3 & -2 & -1 & 0 & 0 & 0 \\ 5 & 1 & 4 & -3 & -3 & 1 & 0 & 0 \\ 6 & 1 & 5 & -4 & -6 & 3 & 1 & 0 \\ 7 & 1 & 6 & -5 & -10 & 6 & 4 & -1 \\ \end{array} $$
I don't have a proof of any of these claims , but it seems to me that these are true, so i would like to see proofs of these claims (if these are indeed true) and a deep explanation of connection between all this.