I was thinking about this function
$$f(n) = \prod_{k=2}^{n} \sqrt[k-1]{k}$$
Maybe use it to do number theory or so.
But then I started to wonder about the asymptotics of $f(n)$.
I first assumed $g(n) = n \ln(n)^{\ln(n)^{\frac{10}{9}}}(n) $ to be a good asymptotic.
But
$$\lim \frac{f(n)}{g(n)} = \infty$$
Then I considered $h(n) = \exp(\ln(n)^{\ln(\ln(n)/\sqrt \ln(n))})$
But again
$$\lim \frac{f(n)}{h(n)} = \infty$$
Maybe I should use different type of functions to make asymptotics? Gamma?
Or do I need more complicated special functions to get a good asymptotic like tetration or Ackermann function?
I know $\ln(n) = \lim_m m(n^{1/m}-1)$ so maybe I should use $\ln(n!)$ as part of the asymptotic?
This also implies looking at
$$t(n) = \prod_{k=2}^{n} \frac{\sqrt[k-1]{k}}{\ln(k+1)}$$
or
$$v(n) = \prod_{k=2}^{n} \frac{\sqrt[k-1]{k}}{\ln(k+1)^\dfrac{1}{\ln(k+1)^2}}$$
But those 2 do not seem to converge.
Should I try Taylor series?
How to get a good asymptotic? Does it even exist?