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.

A343649 Triangle read by rows, 1 <= k <= n: T(n,k) is the number of (unlabeled) connected graphs with n nodes and throttling number k.

Original entry on oeis.org

1, 0, 1, 0, 0, 2, 0, 0, 2, 4, 0, 0, 0, 13, 8, 0, 0, 0, 13, 83, 16, 0, 0, 0, 0, 308, 513, 32, 0, 0, 0, 0, 296, 7460, 3297, 64, 0, 0, 0, 0, 68, 38630, 200207, 22047, 128, 0, 0, 0, 0, 0, 65211, 4788564, 6709094, 153446, 256
Offset: 1

Views

Author

Pontus von Brömssen, Apr 24 2021

Keywords

Comments

The throttling number of a graph can be defined as follows. Start with a blue/white coloring of the nodes. At each step, all white nodes, which are currently the unique white neighbor of a blue node, are colored blue. The throttling number is the minimum, over all possible initial colorings, of the sum of the number of blue nodes in the initial coloring and the number of steps required to color all nodes blue.
A connected graph with n nodes has throttling number n if and only if it does not contain any 4-path, 4-cycle, or bowtie graph as an induced subgraph (Carlson and Kritschgau 2021, Theorem 4.2). Apparently, all these graphs can be constructed in the following way (for n >= 2). Let the nodes be 1, ..., n and choose a subset of special nodes. We require that n is a special node and that 1 is not, so there are 2^(n-2) possible choices for the set of special nodes. For i < j, let there be an edge between i and j if and only if j is a special node. These graphs do not contain any of the forbidden induced subgraphs, and different sets of special nodes lead to nonisomorphic graphs. Consequently, T(n,n) >= 2^(n-2). Apparently, equality holds, so that there are no other such graphs.

Examples

			Triangle begins:
   n\k 1  2  3   4    5      6        7        8       9   10
  -----------------------------------------------------------
   1:  1
   2:  0  1
   3:  0  0  2
   4:  0  0  2   4
   5:  0  0  0  13    8
   6:  0  0  0  13   83     16
   7:  0  0  0   0  308    513       32
   8:  0  0  0   0  296   7460     3297       64
   9:  0  0  0   0   68  38630   200207    22047     128
  10:  0  0  0   0    0  65211  4788564  6709094  153446  256
		

Crossrefs

Row sums: A001349.

Formula

T(n,k) = 0 for k < A000267(n-1), and T(n,A000267(n-1)) > 0 because the n-path has throttling number A000267(n-1) (Butler and Young 2013).

A355399 a(n) is the failed skew zero forcing number of C^2_n.

Original entry on oeis.org

0, 1, 2, 4, 3, 4, 6, 5, 6, 8, 6, 8, 10, 8, 10, 12, 10, 12, 14, 12, 14, 16, 14, 16, 18, 16, 18, 20, 18, 20, 22, 20, 22, 24, 22, 24, 26, 24, 26, 28, 26, 28, 30, 28, 30, 32, 30, 32, 34, 32, 34, 36, 34, 36, 38, 36, 38, 40, 38, 40, 42, 40, 42, 44, 42, 44, 46, 44, 46
Offset: 3

Views

Author

Keywords

Comments

Given a graph G where each vertex is initially considered filled or unfilled, we apply the skew color change rule, which states that a vertex v becomes filled if and only if it is the unique empty neighbor of some other vertex in the graph. The failed skew zero forcing number of G, is the maximum cardinality of any subset S of vertices on which repeated application of the color change rule will not result in all vertices being filled. Note that C^2_n = Ci_n(1,2) is the square of C_n.

Crossrefs

Formula

a(n) = 2*floor(n/3) + 2*(ceiling(n/(3*floor(n/3) + 1)) - floor(n/(3*floor(n/3) +1 )) - 1) for n >= 11.
a(n) = 2*A008611(n-3) for n >= 11.

Extensions

More terms from Stefano Spezia, Jun 30 2022
Showing 1-2 of 2 results.