﻿from cmath import *

def Suite_1(n):
    z=0
    for k in range(1,n+1):
        z=(1+1j)/2*z-1+1j
    return z
