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

A339160 Triangle read by rows: T(n,k) is the number of unlabeled nonseparable (or 2-connected) loopless multigraphs with n edges and k nodes (n >= 1, 2 <= k <= n + 1).

Original entry on oeis.org

1, 1, 0, 1, 1, 0, 1, 1, 1, 0, 1, 2, 2, 1, 0, 1, 3, 6, 3, 1, 0, 1, 4, 11, 11, 4, 1, 0, 1, 5, 22, 33, 23, 5, 1, 0, 1, 7, 38, 89, 96, 40, 7, 1, 0, 1, 8, 63, 212, 345, 234, 70, 8, 1, 0, 1, 10, 98, 463, 1083, 1146, 546, 110, 10, 1, 0, 1, 12, 151, 943, 3068, 4739, 3505, 1169, 176, 12, 1, 0
Offset: 1

Views

Author

Andrew Howroyd, Dec 05 2020

Keywords

Examples

			Triangle T(n,k) begins (n edges >= 1, k vertices >= 2):
  1;
  1,  0;
  1,  1,   0;
  1,  1,   1,   0;
  1,  2,   2,   1,    0;
  1,  3,   6,   3,    1,    0;
  1,  4,  11,  11,    4,    1,    0;
  1,  5,  22,  33,   23,    5,    1,    0;
  1,  7,  38,  89,   96,   40,    7,    1,   0;
  1,  8,  63, 212,  345,  234,   70,    8,   1,  0;
  1, 10,  98, 463, 1083, 1146,  546,  110,  10,  1, 0;
  1, 12, 151, 943, 3068, 4739, 3505, 1169, 176, 12, 1, 0;
  ...
		

Crossrefs

Column k=3 is A001399(n-3).
Row sums are A010357.

Formula

T(n,2) = T(n,n) = 1.

A360866 Triangle read by rows: T(n,k) is the number of unlabeled connected loopless multigraphs with n edges on k nodes and degree >= 3 at each node, n >= 2, 1 <= k <= floor(2*n/3).

Original entry on oeis.org

0, 0, 1, 0, 1, 0, 1, 1, 0, 1, 3, 2, 0, 1, 4, 7, 0, 1, 6, 19, 6, 0, 1, 8, 40, 37, 6, 0, 1, 10, 71, 135, 56, 0, 1, 12, 117, 366, 338, 35, 0, 1, 15, 184, 858, 1417, 494, 20, 0, 1, 17, 270, 1778, 4670, 3494, 492, 0, 1, 20, 387, 3413, 13125, 17355, 6047, 251
Offset: 2

Views

Author

Andrew Howroyd, Feb 24 2023

Keywords

Comments

Terms may be computed using the tools geng, vcolg and multig in nauty with some additional processing to check the degrees of nodes.

Examples

			Triangle begins:
  0;
  0, 1;
  0, 1;
  0, 1,  1;
  0, 1,  3,   2;
  0, 1,  4,   7;
  0, 1,  6,  19,    6;
  0, 1,  8,  40,   37,     6;
  0, 1, 10,  71,  135,    56;
  0, 1, 12, 117,  366,   338,    35;
  0, 1, 15, 184,  858,  1417,   494,   20;
  0, 1, 17, 270, 1778,  4670,  3494,  492;
  0, 1, 20, 387, 3413, 13125, 17355, 6047, 251;
  ...
		

Crossrefs

Row sums are A360867.
Diagonal sums are A360868.
Cf. A046752, A191646, A360862 (loops allowed).

A002935 Number of series-reduced star graphs with n edges.

Original entry on oeis.org

1, 1, 2, 5, 9, 22, 62, 177, 560, 1939, 7067, 27331, 110871, 468684, 2057161, 9341736
Offset: 3

Views

Author

Keywords

References

  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Row sums of A046752.
Cf. A360879.

Extensions

a(13)-a(17) from Sean A. Irvine, May 18 2020
a(18) from Andrew Howroyd, Feb 25 2023

A360870 Triangle read by rows: T(n,k) is the number of unlabeled connected multigraphs with n edges on k nodes, no cut-points and degree >= 3 at each node, loops allowed, n >= 2, 1 <= k <= floor(2*n/3).

Original entry on oeis.org

1, 1, 2, 1, 4, 1, 7, 2, 1, 10, 8, 2, 1, 14, 19, 11, 1, 18, 40, 48, 7, 1, 23, 77, 154, 70, 5, 1, 28, 132, 421, 392, 71, 1, 34, 217, 1008, 1638, 690, 35, 1, 40, 340, 2210, 5623, 4548, 767, 16, 1, 47, 510, 4477, 16745, 22657, 8594, 566, 1, 54, 742, 8557, 44698, 92844, 64716, 11247, 226
Offset: 2

Views

Author

Andrew Howroyd, Feb 25 2023

Keywords

Comments

Columns k >= 3 correspond to the 2-connected graphs.
Terms may be computed using the tools geng, vcolg and multig in nauty with some additional processing to check the degrees of nodes.

Examples

			Triangle begins:
  1;
  1,  2;
  1,  4;
  1,  7,   2;
  1, 10,   8,    2;
  1, 14,  19,   11;
  1, 18,  40,   48,     7;
  1, 23,  77,  154,    70,     5;
  1, 28, 132,  421,   392,    71;
  1, 34, 217, 1008,  1638,   690,    35;
  1, 40, 340, 2210,  5623,  4548,   767,    16;
  1, 47, 510, 4477, 16745, 22657,  8594,   566;
  1, 54, 742, 8557, 44698, 92844, 64716, 11247, 226;
  ...
		

Crossrefs

Column 2 is A014616.
Row sums are A360882.
Row sums except first column are A360871.

A360879 Number of unlabeled nonseparable (or 2-connected) loopless multigraphs with circuit rank n and degree >= 3 at each node.

Original entry on oeis.org

0, 1, 4, 17, 118, 1198, 17133, 311757, 6803203
Offset: 1

Views

Author

Andrew Howroyd, Feb 25 2023

Keywords

Crossrefs

Diagonal sums of A046752.

Formula

a(n) = Sum_{k=2..2*n-2} A046752(n + k - 1, k).

Extensions

a(8) from the paper by Martin Dowd (2014) and a(9) from Martin Dowd (personal communication) added by Andrey Zabolotskiy, Feb 21 2024
Showing 1-5 of 5 results.