"Source: Text/Incidence/AlgSym.text";
"Line: 1313";
"Date: Fri Sep 26 12:10:10 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/Incidence/AlgSym.text, line: 1313
// Example: H159E17 ()
print "Example: H159E17";
ei := GetEchoInput();
SetEchoInput(true);
H := SFAHomogeneous(Rationals());
E := SFAElementary(Rationals());
p := Partitions(7);             
for I in p do
    a := SymmetricCharacter(H.I);
    J := ConjugatePartition(I);
    b := SymmetricCharacter(E.J);
    i := InnerProduct(a,b);
    if i ne 1 then print i; end if;
end for;
SetEchoInput(ei);
