$f(n) = n^2 + n^{0.5}$
$g(n) = [g(n-1)]^2 + [g(n-2)]^2$ for $n \geq 3$, where $g(1) = 1$ and $g(2) = 2$
The statement: $2^{2^{f(n)} }= Ω(g(n))$
The $\lim_{n \rightarrow \infty} \frac{2^{2^{f(n)} }}{g(n)}$ can't be computed easily since $g(n)$ has a recurrence relation.
How do I approach it?
I took a numerical approach to this particular problem. I calculated the first $11$ terms for $g(n)$, i.e., $g(1)$ through $g(11)$. The table below shows the results.
$$\begin{array}{|c|c|c|c|c|c|c|c|c|c|c|c|} \hline n & \log_{2}\left(g(n)\right) \\ \hline 1 & 0.0\\ \hline 2 & 1.0\\\hline 3 & 2.321928094887362\\\hline 4 & 4.906890595608519\\\hline 5 & 9.813781191217037\\\hline 6 & 19.609640474436812\\\hline 7 & 39.12617154448214\\\hline 8 & 78.40434618240933\\\hline 9 & 157.13062045970602\\\hline 10 & 314.26124091941205\\\hline 11 & 628.8444099337115\\\hline \end{array}$$
Notice that the second column presents the $\log_{2}$ of $g(n)$, which grows so fast and so huge that my computer is not able to compute it for $n > 11$ (at least not with Python and Matlab; $g(11)$ has $190$ digits and the number of digits double for every iteration).
The right column of the table can be approximated to $$\log_{2}\left(g(n)\right) = 0.3051\exp\left(0.6937n\right)$$ with Matlab's curve fitting tool. The image below shows that the fit is pretty good.
Therefore, $$g(n)\simeq2^{0.3051\exp\left(0.6937n\right)}$$
From WolframAlpha, $$\lim_{n\to\infty} \dfrac{2^{2^{n^2 + n^{0.5}}}}{2^{0.3051\exp\left(0.6937n\right)}} \to \infty$$
With a slightly different fit to the curve,
you can show that
$$\lim_{n\to\infty} \dfrac{2^{2^{n^2 + n^{0.5}}}}{2^{2.944\mathrm{e}{-}05 n^{7.032} + 5.808}} = \infty$$
And so, $f(n)\in\Omega\left(g(n)\right)$.