17610 == B016, where the high nibble B16 indicates that it is a Control Change message, and the low nibble indicates that it's addressed at MIDI Channel 1 (zero-based).
Similarly, 17710 == B116, which is Control Change (B16) on Channel 2 (116),
17810 == B216, you get the idea.
When dealing with MIDI, the decimal representation of the messages is completely meaningless, it's much more useful to use hexadecimal.
will send a Control Change message addressed to Controller #1216 on Channel 1, with a value of 3416, which is encoded in Serial MIDI as hex B0 12 34 (where the first byte is 176 in decimal).