First time here? Check out the FAQ!
answered 2019-01-17 13:10:57 +0100
If you define o as the orbits:
o
sage: o = group.orbits()
you can get the list of number of vertices in each orbit as follows:
sage: [len(i) for i in o]
If you prefer a vector:
sage: vector([len(i) for i in o])