document.write( "Question 1101404: Given the sequence: 5,14,23,32,..., determine the 56th term and the sum of the first 57 terms. \n" ); document.write( "
Algebra.Com's Answer #716023 by htmentor(1343)![]() ![]() You can put this solution on YOUR website! This is an arithmetic sequence with common difference = 9 and 1st term = 5 \n" ); document.write( "The nth term is a_n = a1 + (n-1)*d \n" ); document.write( "Thus a_n = 5 + 9(n-1) = 9n - 4 \n" ); document.write( "Therefore a_56 = 9*56 - 4 = 500 \n" ); document.write( "The sum of the 1st n terms is given by S(n) = (n/2)(a1 + an) \n" ); document.write( "a_57 = 9 + a_56 = 509 \n" ); document.write( "S(57) = (57/2)(5 + 509) = 14649 \n" ); document.write( " |