The solution to $T(n)=T(\log n) + \Theta(1)$ is $O(\log n)$. Does adding $cn$ to this make any difference?
Similarly, is the time complexity of $F(n)=F(\sqrt{n}) + \Theta(1)$ different from $F(n)=F(\sqrt{n}) +cn$ , and if yes what is the difference?
Thanks in advance.
If $c > 0$, a solution of $T(n) = T(\log n) + c n$ can't be $o(n)$, because then $c n = T(n) - T(\log n) = o(n)$.