Seeing as you don't seem to be familiar with induction, I'll give a quick explanation.
We begin by checking the base case for the statement, ie for the first value we are interested in- in your case, check for when $n=1$. Next, we assume the statement is true for some $n=k$.
Next, we use our assumption to show that if the assumption is true then the statement is also true for $n=k+1$. But we already know the statement is true for $n=1$ (in your case), so it must be true for $n=2,3,4,...$ and so on.
I can provide a proof by induction in this case if you feel you are ready for it?
Proof by induction
I will make this proof quite explicit as this is your first proof by induction.
First, let $f(n)=11^{n+2}+12^{2n+1}$.
Base case
Check for $f(1)$:
$$11^3+12^3=133\times23$$
which is certainly divisible by $133$!
Assumption
Assume true for $n=k$:
$$f(k)=11^{k+2}+12^{2k+1}\text{is divisible by $133$ for all $k\in\mathbb N$}$$
Inductive step
Now to prove that the assumption implies the truth of the statement for $n=k+1$:
$$f(k+1)=11^{k+3}+12^{2(k+1)+1}=11^{k+3}+12^{2k+3}=11(11^{k+2})+144(12^{2k+1})$$
$$=11(11^{k+2}+12^{2k+1})+133(12^{2k+1})=11f(k)+133(12^{2k+1})$$
Now, $133(12^{2k+1})$ is certainly divisible by $133$, but by the assumption, $f(k)$ is also divisible by $133$. Hence we have proved that $f(k+1)$ is divisible by $133$ if $f(k)$ is divisible by $133$. But by the base case, we know it to be true for $n=1$. Hence the result follows for all $n\in\mathbb N$. I'll just formally write the conclusion below.
Conclusion
If $f(n)$ is divisible by $133$ for $n=k$ and this implies $f(k+1)$ is divisible by $133$, as $f(1)$ is divisible by $133$ then $f(n)$ is divisible by $133$ for all $n\in\mathbb N$ by the principle of mathematical induction.