Is there are a big-O notation for a function $f(x)$ that tends $\infty$ at an arbitrarily small rate?
Obviously, the expression $\mathcal{O(1)}<f(x)<\mathcal{O}(\sqrt{\log(x)})$ is not good enough (I just randomly choose $\sqrt{\log(x)}$. What is a smart expression that I can replace $\sqrt{\log(x)}$ with?
You want to use the notation $f(x)=\omega(1)$.
The notation $f = \omega(g)$, $f$ dominate $g$, is defined as $$\forall k > 0 \, \exists n_0 \, \forall n > n_0 \colon |f(n)| > k\cdot g(n)$$ or $$\lim_{n \to \infty} \frac{\left|f(n)\right|}{g(n)} = \infty$$