The most famous (and simplest non-trivial) recurrence is the Fibonacci recurrence $F(n)=F(n-1)+F(n-2)$ with $F(0)=0, F(1)=1$. What if we consider instead division based recurrences, the simplest non-trivial one being say: $F(x)=F(x/2)+F(x/3)$ (where now the initial conditions are $F(x)=1$ for $x\in [1,2)$; alternatively/equivalently, the integer based recurrence $F(n) = F(\lfloor \frac n2\rfloor) + F(\lfloor \frac n3\rfloor)$)?
Instead of the "short range" dependencies of the subtraction based, the division based one is more "long range"; i.e. in the subtraction based version, one only needs to keep track of 3 "variables" [in the computer/code sense] $F(k-2), F(k-1), F(k)$ and update them accordingly to get to arbitrary $F(n)$), but the division based one basically needs to keep track of the whole array $F(1),\ldots, F(k)$. The "short range" nature of the subtraction based version makes it possible to use linear algebra techniques to analyze the problem, and lead to closed form formulas for those recurrences.
Has this type of problem been studied before? What progress can be made? (e.g. closed form formulas, asymptotics, bounds, etc.)