def Suite (n):
    L=[]
    u=1
    for i in range (n):
        L=L+[u]
        u=3*u-1.4
    return(L)

print(Suite(5))




Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: