Problem 1
$$ {\rm f}\left(n\right) = \frac{1}{n}\, \left[{\rm f}\left(n - 1\right)k_{0} + {\rm f}\left(n-2\right)k_{1}\right]\tag{1} $$
( This can also be written as ${\rm Q}\left(n\right) = k_{0}\frac{{\rm Q}\left(n - 1\right)}{n - 1} +k_{1}\frac{{\rm Q}\left(n - 2\right)}{n - 2}$ provided ${\rm Q}\left(n\right) = n{\rm f}\left(n\right) $ )
where $k_{0},\,k_{1}$ are constants. ${\rm f}\left(0\right)=3,\,{\rm f}\left(1\right)=5$. The variable coefficient $\frac{1}{n}$ is making lot of issues here. It blocks the proper expansion.
Question
Please help me to find the solution of the recurrence in terms of $n$ ( implies ${\rm f}\left(n\right)$ ) and also the summation of the recurrence up to infinity ( $ sum = \sum_{n = 0}^{\infty}{\rm f}\left(n\right)$ ).
Note::
- Partial answers are also welcome. We can discuss that here. This recursion forms a structure of Fibonacci look like tree. I have attached a pic here. You can see Red nodes to indicate $k_0$ multiplication and green to indicate $k_1$ multiplication. You can see the index of the tree expands like a Fibonacci sequence(starts from 5)
Some of the generating function smart manipulations can be looked in to this famous e book for reference link:-generatingfunctionology!
I know a method of using ODE. But I am trying to solve it with out ODE so that I can extent this to higher dimension like matrices in similar structure questions. Please avoid ODE solution or any matrix exponential. A method using series would be more desirable

Problem 2( extended Matrix version of problem 1)
We have a given matrix recurrence ,
$ (\curlyvee_i,\curlyvee_{i-1})_{1\times2}= (\curlyvee_{i-2},\curlyvee_{i-3})_{1\times2}{\begin{bmatrix}A_{i-1}A_i+B_i & A_{i-1} \\B_{i-1}A_i & B_{i-1} \end{bmatrix}}_{2\times2} \tag 1$
$A_i= r\frac{\Im1}{i},B_i= r^2\frac{\Im2}{i} \tag 2$
$ \Im1=\left( \begin{array}{ccc} 0 & -n_0 & m_0 \\ n_0 & 0 & -l_0 \\ -m_0 & l_0 & 0 \\ \end{array} \right), \Im2=\left( \begin{array}{ccc} 0 & -(n_1-n_0) & (m_1-m_0) \\ (n_1-n_0) & 0 & -(l_1-l_0) \\ -(m_1-m_0) & (l_1-l_0) & 0 \\ \end{array} \right).\tag3$
$l_1,m_1,n_1,l_0,m_0,n_0,r$ all are constants can't alter at all
Given Data about the problem
- Dimensions of $A_i,B_i,\curlyvee_i$ are $3\times3$ and $A_i,B_i$ are skew symmetric matrices with diagonal zero
- Our initial condition is given as $(\curlyvee_1,\curlyvee_{0})_{1\times3} $
Properties of $\Im1,\Im2$ useful for simplification are given below
For each matrices $\Im1 ( a=l_0,b=m_0,c=n_0), \Im2 ( a=l_1-l_0,b=m_1-m_0,c=n_1-n_0)$,let $p = \sqrt{a^2+b^2+c^2}$. It is true that $\wp^3 = -(a^2+b^2+c^2)\wp = -p^2\wp$ ($\wp$ represents matrices $\Im1, \Im1$ ,select a,b,c accordingly). Hence, $\wp^{2m+1} = (-1)^mp^{2m}\wp \tag 4$ and $\wp^{2m} = (-1)^{m-1}p^{2m-2}\wp^2 \tag 5$. In essence it says both matrices $\Im1, \Im2$ satisfies this property. courtesy @JimmyK4542
Question 1. How do we solve this recurrence in terms of n. Is there any way to take out n from the $3\times3$ matrices in recursion so that we can go for easy simplification. ?
NB :: I would like to have a solution with out using ODE or matrix exponential as I can extent to tensors etc. Please avoid such solution. Those were discussed earlier. Another version of the same question I posted as graph problem is given here. I didnt get any response to that,so I made it simplified as matrix recursion here. I haven been trying lot of methods on it none is successful coz of the properties of $A_i$
Note :: Bounty will be awarded to the helpful suggestions which leads to solution.
Efforts done so far
- Tried to evaluate using power series simple method. Result:: failed ,Reason :: varying n blocks the procedure
- Tried to make another equivalent series by substitution. Result :: failed,Reason :: it still went back to old issues. (not sure any nice substitution exists such that we can get form that is solvable..trying)
- Made it as graph problem .I see a finite structure in Tree and node coloring.. If we go with graph theory method to get an expression for general case n and later add all as series up to infinity , we can find a sequence some thing like GP. We may end up in a finite expression. Result :: Failed ,Reason:: It was tough to get that common expression for a graph based on node contribution
- Made it as matrix recursion, Result :: failed, could not decompose the matrix recursion component to separate n
- Tried to compare or extract some properties from Fibonacci tree as it has same structure. Result :: Failed,Reason:: we will still end up in varying coefficient ..