The function t is defined recursively as follows tn Write
     The function t(  ) is defined recursively as follows  t(n) =  Write, in pseudocode, an iterative algorithm for this function. Your function must take as input the single number  and return as output the vector t=t(1), t(2), , t(n)]. Be sure to declare your function with an appropriate name.  Trace your algorithm for the input  = 5. 
  
  Solution
T??
