"Source: Text/Incidence/AlgSym.text";
"Line: 1207";
"Date: Fri Sep 26 12:10:10 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Incidence/AlgSym.text, line: 1207
// Example: H159E15 ()
print "Example: H159E15";
ei := GetEchoInput();
SetEchoInput(true);
S := SFASchur(Integers());
E := SFAElementary(Integers());
h := S!E.[3,3,3];
h;
f:=Frobenius(h);
f;
p:=Partitions(f);
for pp in p do
   if Coefficient(h, ConjugatePartition(pp)) ne Coefficient(f, pp) then
      print pp;
   end if;
end for;
SetEchoInput(ei);
