What is the time complexity of the following loop?
double j = 1.0
while (j < log n) {
j = 1.3 * j
}
The loop, if it was j < n, then it would be log n. However, it goes from j = 1 to log n instead of n. How do you combine that to find the total complexity?