I would like to solve the following recurrence relation:
T(n) = 2T(sqrt(n))+log2n
Unfortunately, neither the master theorem nor the akra-bazzi-method can be applied in this case. I guess that the solution must be O(log log n) but I am not sure how to prove this.
Many thanks in advance.




