c10comm.py

Created by manuel-eleve-tle-specialite-indice2020

Created on May 29, 2020

159 Bytes


from math import exp

def termes(n):

    I=exp(1)-2

    L=[I]

    for k in range(2,n+1):

        I=k*I-1

        L.append(I)

    return(L)