One of the best method for calculating power is Square and Multiply Algorithm for Modular Exponentiation.
This algorithm is in the following form

For example

the maple proc of this algorithm is as follows

suppose that we want to compute a^b mod n. This line
for i from 0 to b while 2^i <= b do c := c+1 end do
compute the binary length of number b. This line
for i from 0 to c-1 do if irem(m, 2, 'q') = 1 then B[1, c-i] := 1 end if; m := q end do
obtain the binary form of number b and place in a matrix. This line
for i to c do m := irem(m^2, n); if B[1, i] = 1 then m := irem(m*a, n) end if end do
do square and multiply algorithm. Please do one example to learn it.
If you want to obtain (a^b mod n) you should first run proce code and
after that write Pow(a,b,n) and do enter key. For example for your
numbers, after run the proce you should write
Pow(2, 968365546456, 132132156132132)
and after enter key you see the following message
2^(968365546456) mod (132132156132132) = (131464616935876)
Please see the source code.
The best book in this field is Introduction to Cryptography with Maple.