document.write( "Question 63316: find the first four terms of the sequence a) a[n]=n^3+1
\n" );
document.write( "b) a[1]=4;a[n]=3a[n-1]+1
\n" );
document.write( " thank you... \n" );
document.write( "
Algebra.Com's Answer #44361 by venugopalramana(3286)![]() ![]() You can put this solution on YOUR website! find the first four terms of the sequence a) a[n]=n^3+1 \n" ); document.write( "PUT \n" ); document.write( "N=1......A1=1^3+1=2 \n" ); document.write( "N=2......A2=2^3+1=9 \n" ); document.write( "N=3......A3=28 \n" ); document.write( "N=4......A4=65\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "b) a[1]=4;a[n]=3a[n-1]+1 \n" ); document.write( "PUT N=1 \n" ); document.write( "A1=4 GIVEN \n" ); document.write( "N=2.....A2=3A1+1=3*4+1=13 \n" ); document.write( "N=3.....A3=3A2+1=3*13+1=40 \n" ); document.write( "N=4.....A4=3*A3+1=3*40+=121\r \n" ); document.write( "\n" ); document.write( "thank you... \n" ); document.write( " \n" ); document.write( " |