answered 6 years ago
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])