I had a difficult time in phrasing my question. But I was wondering if there is an operation that, when repeated n times, results in the addition operator. Same way as repeating addition n times results in the multiplication operator, and repeating multiplication n times results in the exponentiation operator etc.
So $n$ times addition of a number $x$ results in $x\times n$.
And $n$ times multiplication of a number $x$ results in $x^n$
Then my question is $n$ times ...what... results into the number $x+n$.
Let's call this operator: $@$.
For example, the following would then hold:
$$a\times a=a^2$$
$$a+a=a\times 2$$
$$a@a=a+2$$
My question is, does it make any sense thinking of such an operator, is there anything known about it, can it be followed through even further like $a\sim a = a@2$?
Yes there is.
The successor $s$ function do that where:
$$\forall n\in\mathbb Z,\quad s(n)=n+1$$
and $s(0)=0$.
You can have more information here.
Thanks to a comment, you also might be interested in this.
Though you can not define this operator as a binary relation as you would like it to be defined.