Preamble:
There is a related question to what I'm asking, which has been closed as too broad here: What are some ways of thinking about exponentiation, other than repeated multiplication?
I would like to limit the scope of my question to natural numbers. I think my question (as presented at the end) is a bit more focused in what kind of answer I'm looking for as well.
Please comment if you think this needs to be refined further (or my tags could be improved...).
At some point in school, addition is taught, probably using something like an addition table:
1 2 3 4 ...
--------
1 | 2 3 4 5
2 | 3 4 6 6
3 | 4 5 6 7
4 | 5 6 7 8 ...
...
And then it's shown that problems like
456
+ 789
are composed of smaller related problems: $9+6$ and carry into the shifted (i.e., times 10) $5+8$ ...
Later on a similar process is used to teach multiplication. A multiplication table is memorized and then it is taught how to solve multi-digit multiplication problems by breaking apart the problem into smaller problems of multiplication and addition. For example
456
× 789
would first be $9 × 456$ which is then itself broken into $9 × 6$ add that to "shifted" (i.e., times 10) $9 × 5$ ...
(This may not be an accurate representation of elementary school learning, but the details about the schooling process are not so important here)
But then this process stops. There is no "power table" (or higher!) learned in school (nor is "exponentiation" as a binary operator associative...).
Typically when encountering an integral exponential problem there isn't any "exponentiation" that occurs. For example, take $57^4$. This would be solved by squaring $57$ (multiplication) and then squaring (multiplication) the result again.
Now, I think there is a semantic objection that goes something like: "But you are doing exponentiating, because, by definition, it is simply repeated multiplication." But I would respond by pointing out how there's something rote about multiplication and addition that is simply lacking when applying exponents. So technically, yes, this is exponentiation, but the point of posting this question here is to draw this distinction between applying an algorithm (for exponentiation) and using more fundamental/rote components (for multiplication and addition).
So my question is something like: In the same way that it's possible to break down addition problems into smaller addition problems, and the same way it's possible to break down multiplication problems into smaller multiplication/addition problems, is it possible to break down exponentiation problems into smaller exponentiation/multiplication/addition problems?
Or alternatively, am I simply stuck on a semantic issue, and addition, multiplication, and exponentiation are all "the same" in some sense?