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)
  
