A165653 Number of disconnected 3-regular (cubic) graphs on 2n vertices.
0, 0, 0, 0, 1, 2, 9, 31, 147, 809, 5855, 54477, 633057, 8724874, 137047391, 2391169355, 45626910415, 942659626031, 20937539944549, 497209670658529, 12566853576025106, 336749273734805530, 9534909974420181226
Offset: 0
Links
- Jason Kimberley, Disconnected regular graphs (with girth at least 3)
- Jason Kimberley, Index of sequences counting disconnected k-regular simple graphs with girth at least g
- Eric Weisstein's World of Mathematics, Cubic Graph
- Eric Weisstein's World of Mathematics, Disconnected Graph
Crossrefs
Programs
-
Mathematica
A[s_Integer] := With[{s6 = StringPadLeft[ToString[s], 6, "0"]}, Cases[ Import["https://oeis.org/A" <> s6 <> "/b" <> s6 <> ".txt", "Table"], {, }][[All, 2]]]; A005638 = A@005638; A002851 = A@002851; a[n_] := A005638[[n + 1]] - A002851[[n + 1]]; a /@ Range[0, 20] (* Jean-François Alcover, Jan 21 2020 *)