document.write( "Question 384316: Find the missing number: 5, 8, 6, 4, 4, 0, 8, ?\r
\n" );
document.write( "\n" );
document.write( "I tried 3n-1. I started with n=2,then n=3, but it failed at n=4.\r
\n" );
document.write( "\n" );
document.write( "I also tried the multiple of the difference of the numbers. the difference between 5&8 is 3, then multiply that by the difference between 8&6 which is 2; so (5-8)* (8-6)= 6. Then (8-6) * (6-4)=4, then (6-4) * (4-4)=0
\n" );
document.write( "That's where it failed.\r
\n" );
document.write( "\n" );
document.write( "I also tried 2n-1 starting with n=3, but that failed also.\r
\n" );
document.write( "\n" );
document.write( "I looked for a pattern in the difference between the numbers, like the triangular numbers or Fibonacci numbers but no luck.\r
\n" );
document.write( "\n" );
document.write( "I don't know what else to try. \n" );
document.write( "
Algebra.Com's Answer #272087 by richard1234(7193)![]() ![]() You can put this solution on YOUR website! I think I found the recursion!\r \n" ); document.write( "\n" ); document.write( "We have 5 - 8 = -3. Take the absolute value of the difference, multiply by 2 to obtain the next term.\r \n" ); document.write( "\n" ); document.write( "8 - 6 = 2, absolute value, multiply by 2 to get 4, etc.\r \n" ); document.write( "\n" ); document.write( "In general, the sequence should be a_n = 2|a_(n-2) - a_(n-1)|. From this, the following term is 16. \n" ); document.write( " |