On ex. 1 python says:
There are 33 integers in that group, they are:
15, 45, 75, 105, 135, 165, 195, 225, 255, 285, 315, 345,
375, 405, 435, 465, 495, 525, 555, 585, 615, 645, 675,
705, 735, 765, 795, 825, 855, 885, 915, 945, 975
See https://www.online-python.com/nxgpkMajEo
On ex. 2:
Turning to mod,
in python (and other programming languages)
% is used as the modulus operator
ab%20 = 17
(a + 10) x (b + 10)%20 =
(ab +10a + 10b + 100)%20 =
ab%20 + 10a%20 + 10b%20 + 100%20 =
17 + 10 + 10 + 0 = 17 + 20 = 37 (assuming a and b not divisible by 20)
But 37%20 = 17