let $[\pi^n] $ be the integer part of $(\pi^n)$, I did mathematica code up to $10^4$ to test primality of $[\pi^n] $ , I have got it could be prime for $n=1,3,4,12$ , Now are there other ? and Is true that $[\pi^n] $ is a prime number for only finitely many integers $n$? ?
Mathematica code
PrimeQ[Table[IntegerPart [Pi^n],{n ,10^4}]]
According to the prime number theorem, the density of primes around $k$ is approximately $1$ in $\log k$. We often approximate this to say $k$ has one chance in $\log k$ of being prime. The expected number of primes is then $$\sum_{n=1}^\infty \frac 1{\log(\lfloor \pi^n \rfloor)}\approx \sum_{n=1}^\infty\frac 1{n \log \pi}$$ which diverges logarithmically, so we would expect infinitely many primes of this form.