Bertie's "double and add the next digit" method is exactly the same thing we do in base 10.....consider the number 1267
Starting from the left.....
Multiply the 1 by 10 = 10........add the next digt = 12 .........multiply this by 10 = 120.....add the next digit = 126........multiply this by 10 = 1260 .......add the last digit = 1267......!!!
This method might be rightly called ...."multiply by the base, add the next digit"
Here's a way to understand why this "works"
(1 x 10) + 2
(1x10 + 2)10 + 6
(1x10^2 + 2*10 + 6)10 + 7
(1x 10^3 + 2x10^2 + 6x10) + 7 = 1267
