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.

Previous Showing 21-24 of 24 results.

A121272 Number of outcomes of unlabeled n-team round-robin tournaments that are not uniquely defined by their score vectors.

Original entry on oeis.org

0, 0, 0, 0, 5, 45, 438, 6849, 191483, 9732967, 903753099, 154108310917, 48542114686488, 28401423719121589, 31021002160355165644, 63530415842308265098260, 244912778438520759443242406
Offset: 1

Views

Author

Tanya Khovanova, Aug 23 2006

Keywords

Comments

This sequence is the difference between A000568 (Number of outcomes of unlabeled n-team round-robin tournaments) and A000570 (Number of tournaments on n nodes determined by their score vectors).

Examples

			All tournaments with 4 or fewer teams are uniquely defined by their score vectors. Hence a(1) = a(2) = a(3) = a(4) = 0.
For five-team tournaments only two score sequences do not define the tournament uniquely: {1,1,2,3,3} and {1,2,2,2,3}. The first sequence corresponds to two different tournaments and the second sequence to three different tournaments. Thus a(5) = 5.
		

Crossrefs

Formula

a(n) = A000568(n) - A000570(n). - Michel Marcus, Nov 01 2019

A255599 Number of (semi-)regular tournaments of order n.

Original entry on oeis.org

1, 1, 1, 1, 1, 5, 3, 85, 15, 13333, 1223, 19434757, 1495297, 276013571133, 18400989629
Offset: 1

Views

Author

Danny Rorabaugh, Feb 27 2015

Keywords

Comments

A tournament of odd order n is regular if the out-degree of each vertex is (n-1)/2. A tournament of even order n is semi-regular if the out-degree of each vertex is n/2-1 or n/2.

Crossrefs

Extensions

a(1)-a(2) prepended and a(14)-a(15) added by Brendan McKay, Mar 21 2019

A256373 The decimal values of binary sequences representing the "bits" form of adjacency matrices of non-isomorphic tournament graphs.

Original entry on oeis.org

0, 5, 34, 36, 100, 165, 520, 528, 544, 549, 565, 814, 1552, 1589, 2568, 2577, 2592, 2593, 2597, 4629, 4663, 8245, 8328, 8469, 8748, 8757, 8765, 16448, 16484, 16512, 16549, 16640, 16645, 16896, 16901, 16904, 16932
Offset: 1

Views

Author

Dan Parrish, Mar 26 2015

Keywords

Comments

For the tournaments on n vertices, the matrices consist of the first A000568(n)terms of the sequence.

Examples

			The 4x4 non-isomorphic tournament matrices are as follows:
The first has "bits" value 0, then second 5, the third 34, the fourth 36, where we read the bit pattern only from the elements above the diagonal, starting at the first row, left to right, then top to bottom.
There are twelve 5x5 non-isomorphic tournament matrices;  their bit patterns are  0, 5, 34, 36, 100, 165, 520, 528, 544, 549, 565, 814.
		

A354607 Triangular array read by rows: T(n,k) is the number of labeled tournaments on [n] that have exactly k irreducible (strongly connected) components, n >= 0, 0 <= k <= n.

Original entry on oeis.org

1, 0, 1, 0, 0, 2, 0, 2, 0, 6, 0, 24, 16, 0, 24, 0, 544, 240, 120, 0, 120, 0, 22320, 6608, 2160, 960, 0, 720, 0, 1677488, 315840, 70224, 20160, 8400, 0, 5040, 0, 236522496, 27001984, 3830400, 758016, 201600, 80640, 0, 40320, 0, 64026088576, 4268194560, 366729600, 46448640, 8628480, 2177280, 846720, 0, 362880
Offset: 0

Views

Author

Geoffrey Critzer, Jul 08 2022

Keywords

Examples

			Triangle T(n,k) begins:
  1;
  0,     1;
  0,     0,    2;
  0,     2,    0,    6;
  0,    24,   16,    0,  24;
  0,   544,  240,  120,   0, 120;
  0, 22320, 6608, 2160, 960,   0, 720;
  ...
		

Crossrefs

Cf. A006125 (row sums), A054946 (column k=1), A000142 (main diagonal).

Programs

  • Mathematica
    nn = 10; G[x_] := Sum[2^Binomial[n, 2] x^n/n!, {n, 0, nn}]; Table[
    Take[(Range[0, nn]! CoefficientList[Series[1/(1 - y (1 - 1/ G[x])), {x, 0, nn}], {x, y}])[[i]], i], {i, 1, nn}]

Formula

E.g.f.: 1/(1-y*(1-1/A(x))) where A(x) is the e.g.f. for A006125.
Previous Showing 21-24 of 24 results.