[Math] Find the smallest natural number $n$

decimal-expansionelementary-number-theorynumber-systems

Find the smallest natural number $n$ such that rightmost digit is $6$ and when we deleted that digit $6$ and add it to the left of the number we get $4n$.

Example of the operation:

$123456$ becomes $612345$

$16$ becomes $61$

$66$ becomes $66$

Best Answer

If $n$ ends with 6, then $4n$ ends with 4 (because $6\cdot 4 = 24$). So the tail looks like

.....6 * 4 = .....4

Then we know $n$ ends with 46 – and so on:

....46 * 4 = ....84
...846 * 4 = ...384
..3846 * 4 = ..5384
.53846 * 4 = .15384
153846 * 4 = 615384

Done.

An example of a larger number with the same property is 153846153846153846.

Related Question