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.

Showing 1-2 of 2 results.

A331237 Total cutting number of all trees of order n.

Original entry on oeis.org

0, 0, 1, 5, 15, 47, 127, 363, 978, 2778, 7624, 21566, 60584, 172221, 488978, 1398457, 4001323, 11490717, 33037548, 95195793, 274609124, 793298293, 2294114542, 6641070332, 19241453969, 55795142707, 161910611244
Offset: 1

Views

Author

Sean A. Irvine, Jan 13 2020

Keywords

Crossrefs

Formula

a(n) = Sum_{T} c(T) where the sum is over all trees with n vertices and c(T) is the cutting number of T.
a(n) = Sum_{k=0..(n-1)*(n-2)/2} A331238(n, k).

A331422 Triangle T(n, k) of the number of connected graphs of order n with cutting number k >= 0.

Original entry on oeis.org

1, 1, 1, 1, 3, 0, 2, 1, 10, 0, 0, 5, 3, 2, 1, 56, 0, 0, 0, 29, 0, 13, 8, 3, 2, 1, 468, 0, 0, 0, 0, 219, 0, 0, 63, 69, 0, 16, 12, 3, 2, 1, 7123, 0, 0, 0, 0, 0, 2706, 0, 0, 0, 502, 263, 300, 0, 85, 80, 24, 16, 12, 3, 2, 1, 194066, 0, 0, 0, 0, 0, 0, 52879, 0, 0, 0, 0, 6191, 3197, 0, 2148, 861, 632, 319, 352, 132, 160, 80, 24, 21, 12, 3, 2, 1
Offset: 1

Views

Author

Sean A. Irvine, Jan 16 2020

Keywords

Comments

The cutting number of a node v in a graph G is the number of pairs of nodes {u,w} of G such that u!=v, w!=v, and every path from u to w contains v. The cutting number of a connected graph, is the maximum cutting number of any node in the graph.

Examples

			The triangle begins:
    1;
    1;
    1, 1;
    3, 0, 2, 1;
   10, 0, 0, 5,  3,   2,  1;
   56, 0, 0, 0, 29,   0, 13, 8,  3,  2, 1;
  468, 0, 0, 0,  0, 219,  0, 0, 63, 69, 0, 16, 12, 3,  2, 1;
  ...
The length of row n is 1 + (n-1)*(n-2)/2.
		

Crossrefs

Cf. A331238 (trees), A001349 (row sums), A002218 (first column).
Showing 1-2 of 2 results.