Multi variable recursive Ackermann sequence

Multi-variable recursive functions often require more than one stopping condition or a mechanism for redirecting the recursion along with the primary recursive formula. The Ackermann function serves as a prime example.  This two-variable function is defined as follows:

The screenshot below shows calculation results for several parameters, raising the question of how the calculator app can handle this, especially with the constraint of a single function expression per user-defined function when using a map. The key is how the app cleverly stores and manages recursive function definitions and their arguments.

Here's a breakdown: