Problem Archive

The quadtree encoding allows us to describe a $2^N \times 2^N$ black and white image as a sequence of bits (0 and 1). Those sequences are to be read from left to right like this:

Consider the following $4 \times 4$ image (colored marks denote places where a split can occur):

0287_quadtree.gif

This image can be described by several sequences, for example : "001010101001011111011010101010", of length $30$, or
"0100101111101110", of length $16$, which is the minimal sequence for this image.

For a positive integer $N$, define $D_N$ as the $2^N \times 2^N$ image with the following coloring scheme:

What is the length of the minimal sequence describing $D_{24}$?

Solution
No solution yet. Write yours at solutions/s287.md.
Problems sourced from Project Euler · Non-commercial & educational use only · CC BY-NC-SA 4.0