def Liste_nb_noyaux_restants(n,p): L=[] N=n while n>0.01*N: L.append(n) n=compte_noyaux_restants(n,p) return L