def liste_diviseurs(n):
    L = []
    for k in range(... , ...):
        if ...:
            L.append(k)

    return L
