Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #9 May 10 2023 12:47:36
%S 0,0,0,1,4,17,72,323,1639,9203
%N Number of graphs on n unlabeled nodes with treewidth 2.
%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Treewidth">Treewidth</a>.
%e There is a single graph of treewidth 2 on 3 vertices, which is the complete graph.
%o (SageMath) [sum(1 for g in graphs(n) if g.treewidth() == 2) for n in range(9)]
%Y Column 2 of A263294.
%K nonn,more
%O 0,5
%A _Martin Rubey_, May 09 2023