"Source: Text/Incidence/AlgSym.text";
"Line: 1207";
"Date: Wed Jun 28 17:27:41 2017";
"Main: Thu May 25 10:02:38 2023";
// original file: Text/Incidence/AlgSym.text, line: 1207
// Example: H155E15 ()
print "Example: H155E15";
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);
