Find the number of simple labeled graphs on n vertices which have no isolated vertices? Compute the result for n=13
Total number of simple labeled graphs = $2^{n \choose 2}$. How to remove vertices of degree greater than 0 ? Should I directly write a Computer Program enumerating on all vertices?