Solve the following recurrence relation $$f(1)=1, f(2)=2\\ f(x) = f\left(\left \lfloor \frac{x}{2} \right \rfloor\right) + f\left(\left\lfloor \frac{x}{3} \right\rfloor\right), \forall x \in \mathbb{N}, x \geq 3 $$
I tried the simple ways to solve a recurrence relation but got things messed up. Any Hint will be helpful.