partie3_ex73.py

Created by cahier-indice-algo-1gen

Created on April 22, 2022

143 Bytes


def liste_coef(k, n):
    L = []
    for x in range(k, n + 1):
        m = -8 / (x - 1)**2
        L.append(m)
    return L