Terrence Tao gives the following formula for the bound of the divisor $$d(n)\leq \exp\left(O\left({\log n \above 1.5pt \log \log n}\right)\right)$$
How can I use this formula to explicitly compute a bound? This question is part understanding Big-O notation. For example if $n$ is a prime say $17$. Naively I am computing $\exp\left(O\left(\frac{\log 17}{ \log \log 17}\right)\right)=\exp\left(O\left(13.66\right)\right)$. I am not sure if my steps are correct or the next calculation to make? I am assuming the log is base 10?
There is also an effective version, due to Robin and Nicolas. See also Nicolas Survey. $$ d(n) \leq n^{\left( \frac{1.0660186782977...}{ \log \log n} \right)} $$ with the constant $1.066..$ chosen to give equality at $n = 6983776800$ and $d(n) = 2304.$ This is superb for larger numbers. For smaller numbers, better to use $$ d(n) \leq \sqrt {3n} $$ or $$ d(n) \leq 48 \; \sqrt[3] {\frac{n}{2520}} $$
Note $$ \frac{1.0660186782977...}{ \log 2} \approx 1.53793986 $$