ORIGINAL SOLUTION PLEASE
Find an explicit formula for the following recurrence relation:
3an+1 - 4an = 0 ; a1 = 5
Write a Python program that tests your result by generating the first 20 terms in the sequence using both the recursive definition and your explicit formula
recurrence relation is
an = (4/3)n-1* 5
for i in range(20):
print((4/3)**(i) * 5)
Get Answers For Free
Most questions answered within 1 hours.