def suite_C10(n): P=1/4 L=[P] for i in range(2,n+1): P=-0.25*P+0.5 L.append(P) return(L)