I'm having trouble deciphering what this recurrence relation is: $$T(n) = T(n^\frac13) + \log n$$ when I try to expand it out I get: $T(n) = T(n^\frac1{3^k}) + k\times\log n $
my problem is breaking down or converting what the big oh notation is, I've seen examples for substituting $n=2^k$ but I don't think that works here. and solving $n^{\frac1{3^k}}=0$ doesn't look right to me.