document.write( "Question 268945: Find the fourth term in the following recursively defined sequence. \r
\n" );
document.write( "\n" );
document.write( "a1 = 2 \r
\n" );
document.write( "\n" );
document.write( "an = an-1 + 3 \r
\n" );
document.write( "\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #197045 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Find the fourth term in the following recursively defined sequence. \n" ); document.write( "a1 = 2 \n" ); document.write( "an = an-1 + 3 \n" ); document.write( "-------------------- \n" ); document.write( "a1 = 2 \n" ); document.write( "a2 = 2+3 = 5 \n" ); document.write( "a3 = 5+3 = 8 \n" ); document.write( "a4 = 8+3 = 11 \n" ); document.write( "==================' \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " |