A sequence is defined recursively Write the first five terms
     A sequence is defined recursively. Write the first five terms. a_1 =5; a_n= 9 - a_n-1 Type the first five terms of the sequence. a_1 =  a_2 =  a_3 =  a_4 =  a_5 =   
  
  Solution
a1=5,an=9-an-1
a2=9-a1=9-5=4
a3=9-a2=9-4=5
a4=9-a3=9-5=4
a5=9-a4=9-4=5

