So I want to copy this group of cells once, then have it paste every 17 rows until the last row (just on the active sheet I am on)

I have my copy code:
' copyboxes Macro
    Range("I4:S5").Select
    Selection.Copy
But what will paste it on row 22 & 23.....then paste on row 40 & 41 -- every 17 rows -- I need it to paste the copying code until the last row of the active sheet.