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.

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.