WTF? You are showing a pattern in the ASCII values of the characters 0 to 9.
Sure there is a pattern in there, since they are consecutive values starting from '0' to '9'.
So your pattern is just the ASCII offset for character '0', which is 0x30, e.g. '0011' in binary.
Hence your "pattern".