Introduction In certain cases, bit blocks will frequently have a non-random bit distribution pattern. Here's an example: 0001000111001111 Patterns such as these can be represented in different ways. One of the most popular is a list of integers, each representing 1 bit. For example { 3, 7, 8, 9, 12, 13, 14, 15, 16 } This is a list of indexes of bits stored as an ascending sequence of integers. Ano