L = [5]
u = 5 # 1er terme

for n in range(1,21):
    u = 0.8*u+7
    L.append(u)

print(L)
