cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A068933 Triangular array D(n, r) = number of disconnected r-regular graphs with n nodes, 0 <= r < n.

Original entry on oeis.org

0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 1, 1, 2, 1, 0, 0, 0, 0, 1, 0, 3, 0, 0, 0, 0, 0, 0, 1, 1, 4, 2, 1, 0, 0, 0, 0, 0, 1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0, 1, 1, 8, 9, 3, 1, 0, 0, 0, 0, 0, 0, 1, 0, 9, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 12, 31, 25, 3, 1, 0, 0, 0, 0, 0
Offset: 1

Views

Author

David Wasserman, Mar 08 2002

Keywords

Comments

A graph is called r-regular if every node has exactly r edges. Row sums give A068932.

Examples

			This sequence can be computed using the information in A068934. We'll abbreviate A068934(n, r) as C(n, r). To compute D(13, 4), note that the connected components of a 4-regular graph must have at least 5 elements. So a disconnected 13-node 4-regular graph must have two components and their sizes are either 8 and 5, or 7 and 6. So D(13, 4) = C(8, 4)*C(5, 4) + C(7, 4)*C(6, 4) = 6*1 + 2*1 = 8.
0;
1, 0;
1, 0, 0;
1, 1, 0, 0;
1, 0, 0, 0, 0;
1, 1, 1, 0, 0, 0;
1, 0, 1, 0, 0, 0, 0;
1, 1, 2, 1, 0, 0, 0, 0;
1, 0, 3, 0, 0, 0, 0, 0, 0;
1, 1, 4, 2, 1, 0, 0, 0, 0, 0;
1, 0, 5, 0, 1, 0, 0, 0, 0, 0, 0;
1, 1, 8, 9, 3, 1, 0, 0, 0, 0, 0, 0;
1, 0, 9, 0, 8, 0, 0, 0, 0, 0, 0, 0, 0;
1, 1, 12, 31, 25, 3...
		

Crossrefs

Formula

D(n, r) = A051031(n, r) - A068934(n, r).