If your teacher wants you to find a positive integer for n that will make
not divisible by 3, then you'll be searching for quite a while.
This is because Rehan is correct in the statement that
is divisible by 3 for any positive integer n.
n = {1,2,3,...}
For example, if n = 5, then
That is divisible by 3 because 135/3 = 45 is a whole number result without any decimal or fractional extras.
---------------
Here's the proof that Rehan probably used or set up.
Base case: Plug in n = 1 to find that
which is definitely divisible by 3.
Inductive step:
Assume that
is divisible by 3 for some integer k > 1.
The goal is to then show it leads to
is also divisible by 3.
Skipping a bunch of steps, you should find that
The first part k^3+2k is already assumed to be a multiple of 3, so we don't need to worry about it. The second part 3(k^2+k+1) is also a multiple of 3 because 3 is a factor.
Summing any two multiples of 3 gets us another multiple of 3.
Therefore, this concludes the proof that Rehan would have done. There are probably alternative proof methods he could have used, but he likely followed these steps or similar when doing the induction proof.
---------------
Long story short, the fact that the statement
is proven to work with any integer n from the set {1,2,3,...} means that we cannot find a counterexample.