Given that $f(n) = \omega(\log n)$ I need to prove that $n=O(2^{f(n)})$.
I tried the following
$f(n) = \omega(\log n) \implies \lim_{n \to \infty} \frac{\log n}{f(n)} = 0$
Then, I want to substitute $n=2^t \implies t=\log n$.
Noting that when $n \to \infty, t \to \infty$.
$\lim_{t \to \infty} \frac{t}{f(2^t)} = 0$
From now on I am not sure how to continue. Am I following the right direction? would appreciate slight guidance on how to continue.