Write a function which prints first N1 terms of the series 3n + 2 which are not multiples of N2

What does the above line mean?
Specially the part where its written 3n+2

hi @isingh
you have to form a series of the form 3n+2 where n goes from 1 to n1
for eg 3(1)+2 = 5, 3(2)+2 = 8, etc
but you dont have to print the numbers which are multiples of n2