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.

A362907 Number of graphs on n unlabeled nodes with treewidth 3.

Original entry on oeis.org

0, 0, 0, 0, 1, 6, 53, 501, 5889, 81786
Offset: 0

Views

Author

Martin Rubey, May 09 2023

Keywords

Examples

			There is a single graph of treewidth 3 on 4 vertices, which is the complete graph.
		

Crossrefs

Column k=3 of A263294.

Programs

  • SageMath
    [sum(1 for g in graphs(n) if g.treewidth() == 3) for n in range(9)]