document.write( "Question 1043199: Find the 29th smallest positive integer that can be written only using the digits zero and one in base five \n" ); document.write( "
Algebra.Com's Answer #658306 by LinnW(1048)\"\" \"About 
You can put this solution on YOUR website!
29 in binary is 11101 This is the 29th number in binary beginning with 1
\n" ); document.write( "and 11101 in base 5 will be the 29th smallest
\n" ); document.write( "Converted to decimal, this is 1*5^4 + 1*5^3 + 1*5^2 + 0*5^1 + 1*5^0
\n" ); document.write( "625 + 125 + 25 + 0 + 1 = 776
\n" ); document.write( "
\n" ); document.write( "
\n" );