It has been asked if there is an operation, that when repeated $n$ times results in addition. The solution given is that one can use the $\max$ function in a clever way:
$$\max(a, b) + 1 + \delta_{ab} = \text{succ}_{ab}(\text{succ}(max(a, b)))$$
Where $\text{succ}_{ab}(x) = \begin{cases} \text{succ}(x) & \text{if } a = b \\ x & \text{otherwise} \end{cases}$.
I use the successor function to emphasize that it actually does not depend on addition. This has also been described as Zeration. I am trying to see is there an operation $@$ such that $\underbrace{x@x@\cdots@x}_{n\text{ times}} = \max(x, n)$ (or if considerably easier: $\underbrace{x@x@\cdots@x}_{n\text{ times}} = \max(x, n) + 1 + \delta_{ab}$) that does not appeal to $+$, $\cdot$, or $\max$. The name "zeration" suggests that this is some how the lowest on the hierarchy and there might not be such an operation, however, I have not see a proof of this which is why I am wondering if there is such an operation.