Let $t(n):=\begin{cases} \frac{2+\text{log}n}{1+\text{log}n}t(\lfloor\frac{n}{2}\rfloor) + log ((n!)^{\text{log} n}) \hspace{1cm} \text{if}\hspace{0.5cm} n>1 \\ 1 \hspace{0.5cm} \text{if}\hspace{0.2cm} n=1 \end{cases}$
We need to prove that $t(n) \in O(n²)$, thus $t(n) \leq c*n²$
I tried to play around with the master theorem (since $a,b > 1$)
so $a=\frac{2+\text{log} n}{1+ \text{log} n}$, $b=2$, $f(n)=\text{log}((n!)^{\text{log} n})=\text{log}n(\text{log}(n!))$
I have difficulties with the asymptotics of the $f(n)$ due to all the logarithms, help would be much appreciated.