what is n to the 101 power and how would you use progression to solve it?

N^(k+1) = N * N^k

N
so
N^0 = 1
N^1 = 1*N
N^2 = N * N^1
N^3 = N * N^2
.
.
.
N^101 = N * N^100