0

We have an equation as: $a\times b < n$ where $n$ is any positive integer. Now my question is how many pairs of positive integers $(a,b)$ can be found to satisfy the equation. For example, $a\times b < 3$ then the answer is $3$ as we have pairs $(1,1)$, $(1,2)$ and $(2,1)$.

drhab
  • 151,093

1 Answers1

0

Well, if you define $d(k)$ as the number of divisors of $n$, the number of pair $(a,b)$ such that $ab=k$ is exactly $d(k)$, since for each divisor $a$ you have the pair $(a, k/a)$.

But what you are questioning about is the sum $$\sum_{k=1}^{n-1}d(k)$$.

This is not a trivial matter, but there is a result obtained by Dirichlet in 1849:

$$\sum_{k\leq x} d(k)=x\log x+(2C-1)x+O(\sqrt x)$$

You can find a proof in Introduction to Analytic Number Theory by Tom M. Apostol. I'd write it here, but it is pretty long.

ajotatxe
  • 65,084