﻿from math import*
def suite_C6(n):
    A=1
    L=[A]
    for i in range(1,n+1):
        A=sqrt(2*A)
        L.append(A)
    return(L)


