Réponse :
Bonjour,
Explications étape par étape
# from math import sqrt
from matplotlib.pyplot import*
def list_termes_u(n,a):
x=[]
y=[]
u=a
L=[]
for i in range(1,n+1):
u=4*i-6
L.append(u)
x.append(i)
y.append(u)
print (x,y)
plot(x,y,'r')
show()
return L
list_termes_u(10,5)