This is a 3x3 magic square of summation,
in which sums of each row, column, and diagonal are equal.
$$\begin{array}{c|c|c} 4&9&2\\\hline 3&5&7\\\hline 8&1&6 \end{array}$$
Now modify the magic square by defining a simple function $f(x)$,
so it becomes a new magic square of multiplication,
i.e. in which products of each row, column, and diagonal are equal.
$$\begin{array}{c|c|c} f(4)&f(9)&f(2)\\\hline f(3)&f(5)&f(7)\\\hline f(8)&f(1)&f(6) \end{array}$$
Note: Create the function as simple as possible.