Find the smallest integer such that starts with 10 nines .
What is the sum of last 10 digits of the smallest number , namely
Note : There are infinitely many n such that starts with 10 nines. We are looking for the smallest such n .
This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try
refreshing the page, (b) enabling javascript if it is disabled on your browser and,
finally, (c)
loading the
non-javascript version of this page
. We're sorry about the hassle.
2^n = 9999999999 ........ abcdefghij is a huge number with n = 1,923,400,330 so the number is:
2^1,923,400,330 = 99999999997213828437359271518597759670596401080398033 <<579001087>> 66065043081649971975212712782767237949748583359053824
and the last 10 digits are: 3 3 5 9 0 5 3 8 2 4 and their sum is 42.
The solution to the last part after finding n is easy using modulus arithmetic 2^1,923,400,330 mod 10,000,000,000 to get the last 10 digits.