Find the inverse of $2^{10}$ modulo $2011$ and then compute the remainder of the division of $2^{2000}$ by $2011$.
I managed to find the inverse, it was simple, I just had to solve the diophantine equation $1024x+2011k = 1$. I did this by applying the extended euclidean algorithm, and found that the inverse $s$ is $s=83$. But I'm not sure how to apply it to solve $2^{2000}\pmod{2011}$. Any help is appreciated.