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-3 of 3 results.

A379712 Triangle read by rows: T(n,k) is the number of nonempty labeled antichains of subsets of [n] such that the largest subset is of size k.

Original entry on oeis.org

1, 1, 1, 1, 3, 1, 1, 7, 10, 1, 1, 15, 97, 53, 1, 1, 31, 1418, 5443, 686, 1, 1, 63, 40005, 3701128, 4043864, 43291, 1
Offset: 0

Views

Author

John Tyler Rascoe, Dec 30 2024

Keywords

Examples

			Triangle begins:
   k=0   1     2     3    4  5
 n=0 1;
 n=1 1,  1;
 n=2 1,  3,    1;
 n=3 1,  7,   10,    1;
 n=4 1, 15,   97,   53,   1;
 n=5 1, 31, 1418, 5443, 686, 1;
 ...
T(3,0) =  1: {{}}.
T(3,1) =  7: {{1}}, {{2}}, {{3}}, {{1},{2}}, {{1},{3}}, {{2},{3}}, {{1},{2},{3}}.
T(3,2) = 10: {{1,2}}, {{1,3}}, {{2,3}}, {{1},{23}}, {{2},{13}}, {{3},{12}}, {{12},{13}}, {{12},{23}}, {{13},{23}}, {{12},{13},{23}}.
T(3,3) =  1: {{1,2,3}}.
		

Crossrefs

Cf. (column k=1) A000225, A000372, (row sums) A014466, A327806, (column k=2) A379706.

Programs

  • Python
    # see links

A327363 Triangle read by rows where T(n,k) is the number of labeled simple graphs with n vertices and vertex-connectivity >= k.

Original entry on oeis.org

1, 1, 0, 2, 1, 0, 8, 4, 1, 0, 64, 38, 10, 1, 0, 1024, 728, 238, 26, 1, 0
Offset: 0

Views

Author

Gus Wiseman, Sep 26 2019

Keywords

Comments

The vertex-connectivity of a graph is the minimum number of vertices that must be removed (along with any incident edges) to obtain a non-connected graph or singleton.

Examples

			Triangle begins:
     1
     1    0
     2    1    0
     8    4    1    0
    64   38   10    1    0
  1024  728  238   26    1    0
		

Crossrefs

Column k = 0 is A006125.
Column k = 1 is A001187.
Column k = 2 is A013922.
The unlabeled version is A327805.
Row-wise partial sums of A327334 (vertex-connectivity exactly k).

Programs

  • Mathematica
    vertConnSys[vts_,eds_]:=Min@@Length/@Select[Subsets[vts],Function[del,Length[del]==Length[vts]-1||csm[DeleteCases[DeleteCases[eds,Alternatives@@del,{2}],{}]]!={Complement[vts,del]}]];
    Table[Length[Select[Subsets[Subsets[Range[n],{2}]],vertConnSys[Range[n],#]>=k&]],{n,0,4},{k,0,n}]

A327807 Triangle read by rows where T(n,k) is the number of unlabeled antichains of sets with n vertices and vertex-connectivity >= k.

Original entry on oeis.org

1, 2, 0, 4, 1, 0, 9, 3, 2, 0, 29, 14, 10, 6, 0, 209, 157, 128, 91, 54, 0
Offset: 0

Views

Author

Gus Wiseman, Sep 26 2019

Keywords

Comments

An antichain is a set of sets, none of which is a subset of any other.
The vertex-connectivity of a set-system is the minimum number of vertices that must be removed (along with any resulting empty edges) to obtain a non-connected set-system or singleton. Note that this means a single node has vertex-connectivity 0.

Examples

			Triangle begins:
    1
    2   0
    4   1   0
    9   3   2   0
   29  14  10   6   0
  209 157 128  91  54   0
		

Crossrefs

Column k = 0 is A306505.
Column k = 1 is A261006 (clutters), if we assume A261006(0) = A261006(1) = 0.
Column k = 2 is A305028 (blobs), if we assume A305028(0) = A305028(2) = 0.
Except for the first column, same as A327358 (the covering case).
The labeled version is A327806.
Showing 1-3 of 3 results.