def liste(N): U=1 L=[U] for i in range(1,N): U=2*U+3 L.append(U) return(L)