Let $n$ and $k$ be positive integers.
Let $a, b, c, ...$ be $k$ positive integers such that $abc... \leq n$.
How many tuples of {$a, b, c, ...$} satisfy the inequality?
Note that the tuples {$a=1, b=2$} and {$a=2, b=1$} are two different tuples.
For $k = 1$, the answer is $n$.
So for $k = 2$, the answer is $\sum_{i=1}^n floor(\frac{n}{i})$ also $\sum_{i=1}^n d(i)$, where $d$ = number of divisors. http://oeis.org/A006218
Even for $k=2$ this is a hard problem; the first few terms (for $n=1\ldots 10$) would be $$ \{ 1,3,5,8,10,14,16,20,23,27\} $$ While no closed form exists in terms of familiar functions, the large-$n$ behavior is a well-studied problem (the Dirichlet divisor problem) with the result that it goes like $$ n(\log n + 2 \gamma -1) + O(\sqrt{n}) $$