The iterated logarithm is defined as follows:
$\log^*(n):=\begin{cases}0, & \text{ if } n \leq 1 \\ 1 + \log^*(\log n), & \text{ otherwise}.\end{cases}$
Now, I am wondering what the relation between $\log^*(n)$ and the following quantity $f(n)$ is:
$f(n):=\begin{cases}0, & \text{ if } n \leq 1 \\ 1 + f(\log^3 n), & \text{ otherwise}.\end{cases}$
So $\log^*(n)$ indicates the number of times we have to apply the logarithm in order to reach $1$. And $f(n)$ indicates the number of times we have to apply $\log^3(\cdot)$ to reach $1$.
Can you tell me whether $f(n)=\Theta(\log^*(n))$ or even express $f(n)$ in terms of $\log^*(n)$?
Thanks a lot.