def algo(N):
    # n est un entier naturel non nul
    S = 0
    for k in range(N,5*N+1):
        S = S + 1/k
    
    return S
