find upto sixth (or nth) integer divisible by 7 (or x) while the first number being greater than 200 (or given limit)

lets suppose 205 (not acutally divisible) is divisible by 7. Then the output should be

205 //first number

212 //second number (205+7)

.

.
. //upto given limit

I could display upto one number at a time but couldn’t display all 6 numbers at once.