Let $F(a, b) = x^{a + b} + F(a, a + b) + F(b, a + b), x \in (0,\infty) -\{ 1 \}$ and $a, b \in \mathbb{N}$.
So $F(1, 2) = x^3 + F(1, 3) + F(2, 3) = x^3 + x^4 + x^5 + F(1, 4) + F(3, 4) + F(2, 5) + F(3, 5)$.
And the recursion continues infinitely.
How many times does the general term $x^k, k \geq 3$ appear in the infinite sum that emerges from the above stated recursive function? for the call $F(1, 2)$
So basically I just want the multiplier of the general term.
That is, if the sum is of form $S = \sum^{\infty}_{k = 3}a_kx^k$ then I want to find out the value of $a_k$ in terms of $k$ and constants.
It is easy to observe that each term appears at least once because the call $F(1, i)$ will add $x^i$ to the sum and also call $F(1, i + 1)$.