I have two functions
$$g_1(n) = 1$$
$$g_2(n) = 10^{10^n}$$
I have to find one function that is neither $O(g_i(n))$ nor $Ω(g_i(n))$ ($i=1,2$). I already have : $$f(n) = 2 \sin (n)$$ That should be enough for $g_1(n)$, but I don't know how to come up with a function (or modify $f(n)$) so that it handles $g_2(n)$. I think that I should find a function that alternates near the $y$-axis.
Is there an easier way to do this?