I was writing up a whole answer, but I may have been overthinking this. Because they tell us they want natural numbers (0, 1, 2, 3...) you can just pic numbers to plug in. Also, because 2n can get really big really fast, and they want 2n to be less than(or equal to) n2, we should pick small numbers to ensure it stays small.
For example, when n = 1, 2n = 2, and n2 = 1 so 1 would not be a valid value for n.
when n = 2, 2n = 4, and n2 = 4, which means this fulfills the requirements of the question.
I checked n=3 and n=4 which worked as well, but n=5 did not.
Therefore the answer is 2 <= n <= 4
This is not an easy problem, so if you would like me to explain any of the steps please feel free to reach out and ask. Hope this helped :)