def coeff_binomiaux(n): if n==0: return [1] else: l = coeff_binomiaux(n-1)[:]+[0] return [1]+[l[k]+l[k+1] for k in range(n)]