I did it by using GAP. Look at this and I hope it works, unless, tell me to remove that.
gap> SL24:=SL(4,Integers mod 24);
gap> T:=GeneratorsOfGroup( SL24);;
gap> for i in [1..Size(T)] do Print(T[i],"\n"); od;
[ [ ZmodnZObj( 0, 24 ), ZmodnZObj( 23, 24 ), ZmodnZObj( 0, 24 ),ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 1, 24 ), ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 1, 24 ) ],
[ ZmodnZObj( 1, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ) ] ]
[ [ ZmodnZObj( 0, 24 ), ZmodnZObj( 23, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 1, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 1, 24 ), ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 1, 24 ) ] ]
[ [ ZmodnZObj( 1, 24 ), ZmodnZObj( 1, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 0, 24 ), ZmodnZObj( 1, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 1, 24 ), ZmodnZObj( 0, 24 ) ],
[ ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 0, 24 ), ZmodnZObj( 1, 24 ) ] ]
MinimalGeneratingSetorSmallGeneratingSetorGeneratorsSmallest?GeneratorsOfGroupreturns the generators given to create the group, so if you generated it using all 256 elements, it will return just them. – Olexandr Konovalov Jun 02 '13 at 06:06PageSource(ApplicableMethod(MinimalGeneratingSet,[G]));whereGis the subgroup you're dealing with. – Olexandr Konovalov Jun 02 '13 at 08:37GetterFuncmeans that in this case the value of the attributeMinimalGeneratingSetis already computed and stored inG(sinceMinimalGeneratingSetis an attribute). In this case, instead of computing it another time, GAP uses so called "getter" to get the stored value. To see the actual library code, createGonce more and then callPageSource(ApplicableMethod(...before callingMinimalGeneratingSet(G). In this case it is not yet computed, soApplicableMethodshould point to the code in question. – Olexandr Konovalov Jun 02 '13 at 17:53