Explain this question?

Unable to understand this question ?

@Nitya_Somani Hi nitya, Lets see a sample example -
For the input:
3
2
Then we need to print first 3 terms starting from n = 1 in the given series (3n + 2) which are not divisible by 2.
In that case nums starting from n = 1 are 5, 8, 11, 14, 17, 23… and so on. but we need to print only those numbers which are not divisible by 2, which are, 5, 11, 17.

So this is the sample example.
If you have any more query, lemme know else close the doubt by marking it resolved.
Happy Coding!

i am not getting complete outputs in this case . what’s wrong in this code?