Here is the question:
Let $T(n) = T(\frac{n}{\log_2(n)}) + 1$. Solve for $T(n).$
The answer is $T(n) = \Theta(\frac{\log_2(n)}{\log_2{\log_2 (n)}})$.
First of all what is the valid choice for $n$? The expression $f(n) = \frac{n}{\log_2(n)}$ should be a natural number. If we set $n = 2^{2^x}$, then $f(n)$ is a natural number but in the next level it could be non-integer. For example $n= 256$ leads to $n = 8$ and then $f(8) = \frac{8}{3}$ which is nonsense for $T(\frac{8}{3})$ isn't defined. Also I couldn't solve the recurrence.
Note: Master Theorem isn't eligible.
Calling $\log_2 n = a_n$ and considering $a_n > 0$
$$ T\left((a_n)^{\log_{a_n}n}\right)=T\left((a_n)^{\log_{a_n}n-1}\right)+1 $$
Calling now $\mathbb{T}(\cdot)=T\left((a_n)^{(\cdot)}\right)$ and $z = \log_{a_n}n$ we have the recurrence
$$ \mathbb{T}(z)=\mathbb{T}(z-1)+1 $$
with solution
$$ \mathbb{T}(z)=C_0(z)+z $$
with $C_0(z)$ a generic periodic function with period $1$ that we will assume constant, or backwards
$$ T(n) = C_0 + \frac{\log_2 n}{\log_2(\log_2 n)} $$
hence
$$ T(n) = \Theta\left(\frac{\log_2 n}{\log_2(\log_2 n)}\right) $$
NOTE
for $a > 0, b > 0$ $$ b = a^{\log_a b} $$