| 1 | initial version |
If you define o as the orbits:
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])
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.