Hi All.I would like to create loop to skip each fourth number and multiply result by 7. What I mean. If a regular sequence is:0, 1, 2, 3 ,4 ,5, 6, 7, 8, 9, 10, 11, 12 and so on.I would like to get sequence:0, 1, 2 ,4, 5, 6, 8, 9, 10, 12, 13, 14 and so on. In that sequence the numbers 3, 7, 11 are sk...