I am reading through Boolean Function Complexity by Stasys Jukna and I stumbled upon this notation for asymptotic bounds:
$$C(f) \leq (1 + \alpha_n)\frac{2^n}{n} \;where\; \alpha_n = O\Big(\frac{\log n}{n}\Big)$$
What exactly does the equation on the right mean? I am quite uncertain on how to interpret it as I have never the asymptotic notation used like that before.
$\mathcal O\left(\dfrac{\log n}n\right)$ represents the entire set of functions that do not grow faster than $\dfrac{\log n}n$. If you replace $\alpha_n$ with any of these functions, then (according to the author) the inequality should hold. For example, one such function is $\dfrac 1n$ since $\dfrac 1n\in\mathcal O\left(\dfrac{\log n}n\right)$.