Hi all, a quistion about how to add the cofficients list to gether?
here is an example:
For[m = 2, m ≤ 4 , m++,
For[p = 2, p ≤ m^2, p++,
If[PrimeQ[p], Print[CoefficientList[PolynomialMod[Expand[(1 - x)^m], p], x]]]]]
{1,0,1}
{1,1,1}
{1,1,1,1}
{1,0,0,2}
{1,2,3,4}
{1,4,3,6}...