This might sound trivial, but I am wondering why, for example if you do:
$\lfloor10/8\rfloor = 1 \implies 1$ number $[1,10]$ divisible by $8$: $\{8\}$
$\lfloor10/3\rfloor = 3 \implies 3$ numbers $[1,10]$ divisible by $3$: $\{3,6,9\}$
$\lfloor23/4\rfloor = 5 \implies 5$ numbers $[1,23]$ divisible by $4$: $\{4,8,12,16,20\}$
$\ldots$ etc.
Why is this true?
Let's make it general. If we are seeking the number of natural numbers divisible by say $y$ up to a number say $x$, then $\lfloor x/y\rfloor$ is the number that we are seeking because those numbers are $1y,\ 2y,\ 3y, ..., ay\ $ where $ay$ is the biggest number divisible by $y$ with $ay \le x$. Then notice that
If $ay = x$, we directly have $a = \frac{x}{y} = \lfloor x/y\rfloor$ so we have $a$ many such numbers (from $1y$ to $ay$).
If $ay < x$, we have $x-ay = k$ with $k < y$, implies $a = \frac{x-k}{y}$ so $a = \lfloor x/y\rfloor$ again because we know that $k < y$. So again, we have $a$ many such numbers (again from $1y$ to $ay$).