Ackermann Function

This function is a computable function but not primitive recursive. It grows faster than an exponential function.

Definition

The recurrence relation the Ackermann Function is based off of is A(m+1,n+1)=A(m,A(m+1,n))A(m+1,n+1)=A(m,A(m+1,n)). The value grows incredible fast. For example, the value of A(4,2)A(4,2) is 26553632^{65536}-3.

Inverse Ackermann Function

The inverse Ackermann Function (written as α(n)\alpha(n)) grows incredibly slowly, effectively making it constant. It's so slow that it is effectively 5\leq5 for all nn, even when nn is as large as the number of atoms in the universe.