c4zoom3.py

Created by manuel-eleve-tle-specialite-indice2020

Created on May 29, 2020

131 Bytes


def algo_3(n):

    u=1/2

    L=[u]

    for i in range(n):

        u=2*u/(1+u)

        L.append(u)

    return L