me and my math group are trying to find out this problem for our exam. We have to to find a fibonacci recurrence for this pseudocode and how many times the function Pow() is called. Here is the problem specifically. Hopefully point us in the right direction.

Start with small examples. For inductive/recursive problems you need them for your base case anyway, plus in most of the math I've seen working with small problems gives you the experience you need to figure out the general pattern.
For convenience, let $f(n)$ denote the number of times $\text{Pow}$ is called to compute $\text{Pow}(n)$. You don't really need to do this, but I'm super lazy and don't want to write that horrendously long phrase every time.
As you said, this is a homework problem that ends with the recurrence formula and not with a closed-form solution, so I'm not going to go any further in my explanation. Keep working with a few small examples if this isn't enough to get started, but hopefully the pattern is clear by now.