Consider the naturals. $f(n)$ maps naturals to naturals. ( positive integers is meant with naturals )
Whenever $z$ is composite we use
$$ f(z) = f(x y) = \max f(x-1) f(y-1)$$
More precisely
$$f(z)={\max{f(x−1)f(y−1)}∣x,y>1,z=xy}$$
For instance $f(12) = \max [ f(1) f(5) , f(2) f(3) ]$.
We desire Condition 1 for all integer $ n $ :
$$f(n+1) > f(n)$$
It appears not so simple to me to find a solution for $f$ ... Condition 1 USUALLY breaks before $n$ reached 200.
As for the solutions - assuming they exist - how fast do they grow ?
What is the SMALLEST possible value for $f(1),f(2),f(3) $ ?
Analogue questions for
$$ g(z) = g(x y) = \max g(x-2) g(y-2) $$
Take $x=y$ and then substitute $x$ with $x+ 1$.
We get
$$f(x^2 + 2x + 1) = f(x)^2$$ And $$f(x^2 + 2x+1) > f(x^2 + x) > f(x^2)$$
Hence $$f(x^2) << f(x)^2$$
So $f(x) - f(x-1)$ is decreasing on average towards $0$ so $f$ can not be strictly increasing over the naturals.
Notice $t(xy) = t(x+1)t(y+1)$ does not suffer this problem.
I think $t$ grows like $ c x + C_2 ln(x) \sqrt x$.