I am looking for a function $f$ s.t. if $t=O(f(n))$, where $O$ stands for Big-O notation, then:
$$\frac{t}{n}\times\frac{t-1}{n}\times\cdots \times \frac{2}{n}\sim e^{-an} \tag{1}$$
i.e. when the LHS of $(1)$ is exponentially small in $n$?
Say $t=n/2$, so $t=O(n)$, then the LHS of $(1)\leq \left(\frac{1}{2}\right)^n$ so it is exponentially small in $n$. But I was wondering if I can do better than that like what if $t=O(\sqrt{n})$ or something like that in which case I don't know if the LHS of $(1)$ would still be exponentially small?