So, I was counting in base $8$:
$1,2,3,4,5,6,7,10,11,12,13,14,15,16,17,20,21,22,23,24,25,26...$
Then I tried counting in base $13$ and got confused:
$1,2,3,4,5,6,7,8,9,10,11,12$ (confused here, maybe:) $1(01),1(02),1(03),....1(12),2(00).$
Is there a nice or more standard way list the counting numbers in a base above $10$?
The standard way to count this (which is used in hexadecimal: base-$16$) is to use the letters of the alphabet like so: $$ 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E ... $$ So in base-$13$ it would be: $$ \begin{align} &1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C \\ &10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 1A, 1B, 1C \\ &20... \end{align} $$