document.write( "Question 1182732: Start with the number 1 and create the sequence:
\n" );
document.write( "1,2,4,8,16,22,24,28
\n" );
document.write( "where each number is the sum of the previous number and its final digit. How many numbers in the sequence are less than 1000? \n" );
document.write( "
Algebra.Com's Answer #812825 by greenestamps(13200)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "Write out the next 10-20 numbers in the sequence.... \n" ); document.write( "1, 2, 4, 8, 16, 22, 24, 28, 36, 42, 44, 48, 56, 62, 64, 68, 76, 82, 84, 88, 96, ... \n" ); document.write( "... and look for a pattern: \n" ); document.write( "1, 2, 4, 8, 16 // 22, 24, 28, 36 // 42, 44, 48, 56 // 62, 64, 68, 76 // 82, 84, 88, 96 // ... \n" ); document.write( "5 numbers less than 19 \n" ); document.write( "4 more numbers 20 to 39 \n" ); document.write( "4 more number 40 to 59 \n" ); document.write( "4 more numbers 60 to 79 \n" ); document.write( "4 more numbers 80 to 99 \n" ); document.write( "... \n" ); document.write( "It should be clear that the pattern will continue. \n" ); document.write( "There are 4 numbers in the sequence in every interval of 20 consecutive integers, except there is 1 additional number in the sequence among the first 20 integers. \n" ); document.write( "The number of intervals of length 20 up to 1000 is 1000/20 = 50; so \n" ); document.write( "ANSWER: the number of numbers in the sequence less than 1000 is 50(4)+1 = 201. \n" ); document.write( " \n" ); document.write( " |