I am working on the following factorial function:
$$f(x) = [\ln(\lfloor\frac{x}{11}\rfloor!) - \ln(\lfloor\frac{x}{12}\rfloor!) - \ln(\lfloor\frac{x}{132}\rfloor!)] + [\ln(\lfloor\frac{x}{24}\rfloor!) - \ln(\lfloor\frac{x}{33}\rfloor!) - \ln(\lfloor\frac{x}{264}\rfloor!)]$$
I would like to find $X$ such that for all $x \ge X$, $f(x) > 0$.
It seems to me that one approach to establish this is to view $f(x)$ as $264$ separate discrete functions such as:
$f(x)_0$: when $x \equiv 0$ (mod $264$)
$f(x)_1$: when $x \equiv 1$ (mod $264$)
$\ldots$
$f(x)_{263}$: when $x \equiv 263$ (mod $264$)
Each of these discrete functions is strictly increasing so once $f(X)_i > 0$, it follows that all $x \ge X$, $f(x)_i > 0$.
In this way, I was able to write a computer application to calculate that $X = 44$ (assuming that my code was valid). I check for the largest minimum among the $264$ distinct functions.
Is this approach valid? Is there a better way to determine an exact $X$?
Thanks,