

InterviewSolution
Saved Bookmarks
1. |
Find the first five terms of the following sequence, whose ‘nth’ terms are given:tn = n3 |
Answer» Given, tn = n3 For n = 1, t1 = (1)3 = 1 For n = 2, t2 = (2)3 = 8 For n = 3, t3 = (3)3 = 27 For n = 4, t4 = (4)3 = 64 For n = 5, t5 = (5)3 = 125 \(\therefore\) The first five terms are 1, 8, 27, 64 and 125. |
|