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.

A331238 Triangle T(n, k) of the number of trees of order n with cutting number k >= 0.

This page as a plain text file.
%I A331238 #11 Jan 24 2020 14:40:26
%S A331238 1,1,0,1,0,0,1,1,0,0,0,0,1,1,1,0,0,0,0,0,0,1,2,1,1,1,0,0,0,0,0,0,0,0,
%T A331238 0,3,0,2,3,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,3,0,3,7,2,2,3,1,1,1,0,0,0,0,
%U A331238 0,0,0,0,0,0,0,0,0,0,0,0,3,3,4,8,4,7,7,2,3,3,1,1,1
%N A331238 Triangle T(n, k) of the number of trees of order n with cutting number k >= 0.
%C A331238 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 (including trees as considered here), is the maximum cutting number of any node in the graph.
%H A331238 Sean A. Irvine, <a href="/A331238/b331238.txt">Rows n=1..27 flattened</a>
%H A331238 Frank Harary and Peter J. Slater, <a href="https://doi.org/10.1016/0020-0190(86)90093-1">A linear algorithm for the cutting center of a tree</a>, Information Processing Letters, 23 (1986), 317-319.
%H A331238 Sean A. Irvine, <a href="https://github.com/archmageirvine/joeis/blob/master/src/irvine/oeis/a331/A331238.java">Java program</a> (github)
%H A331238 Simon Mukwembi and Senelani Dorothy Hove-Musekwa, <a href="https://doi.org/10.1007/s13226-012-0038-8">On bounds for the cutting number of a graph</a>, Indian J. Pure Appl. Math., 43 (2012), 637-649.
%e A331238 Triangle begins:
%e A331238   1;
%e A331238   1;
%e A331238   0, 1;
%e A331238   0, 0, 1, 1;
%e A331238   0, 0, 0, 0, 1, 1, 1;
%e A331238   0, 0, 0, 0, 0, 0, 1, 2, 1, 1, 1;
%e A331238   0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 2, 3, 1, 1, 1;
%e A331238   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 0, 3, 7, 2, 2, 3, 1, 1, 1;
%e A331238   0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 4, 8, 4, 7, 7, 2, 3, 3, 1, 1, 1;
%e A331238 ...
%e A331238 The smallest nonzero entry on each row occurs at n-2 and the maximum at (n-1)*(n-2)/2.
%Y A331238 Cf. A000055 (row sums), A002887, A002888, A331237.
%K A331238 nonn,tabf
%O A331238 1,23
%A A331238 _Sean A. Irvine_, Jan 16 2020