Question is whether clear patterns exist in the $p_n$ "digit" of a factorization notation where each digit stands for the power of the prime in that digit's position. For example, one would count from 2 to 17 as follows:
1, 10, 2, 100, 11, 1000, 3, 20, 101, 10000, 12, 100000, 1001, 110, 4, 1000000
What pattern, if any, would we expect to see from the right-most digit in this notation (the power of 2 in the factorization). Or in the 2nd right-most digit (the power of 3 in the factorization).
If this notion pre-exists, would appreciate a pointer to it, as I am not sure how to describe it in an unknown unknown phraseology.
The digits in the $2$s place will look like the heights of marks on an imperial ruler, where the heights correspond to the power of $2$ in the denominator of a fraction. If we start counting at $1$ they start $$0,1,0,2,0,1,0,3,0,1,0,2,0,1,0$$ You can recursively generate the sequence. This is the order $3$ version as the central number is $3$. To make the order $n+1$ version take the $n$ version, append $n+1$ and append the $n$ version again. This is OEIS A007814 The construction of the sequence of digits in the $3$s place is similar. Start with $0,0$. Take three copies of the order $n$ version and put $n+1$ in the spaces between them. This is OEIS A007949. It starts $$0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 2, 0, 0, 1, 0, 0, 1, 0, 0, 3, 0, 0$$You should be able to extend this to each prime.