def termes(n):
    p = 1
    L = [p]
    for k in range(1,n+1):
        p = 0.2*p+0.7
        L.append(p)
    return L