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.

A368569 Irregular triangle read by rows: T(n,k) is the number of essential graphs with n nodes and k (directed or undirected) edges (n >= 1, 0 <= k <= n*(n-1)/2).

Original entry on oeis.org

1, 1, 1, 1, 3, 6, 1, 1, 6, 27, 60, 66, 24, 1, 1, 10, 75, 350, 1120, 2130, 2595, 1730, 690, 80, 1, 1, 15, 165, 1235, 6930, 27882, 79825, 162315, 236490, 245150, 180936, 91560, 29890, 5190, 240, 1
Offset: 1

Views

Author

Moritz Schauer, Feb 06 2024

Keywords

Examples

			Triangle T(n,k) (with n >= 1 and 0 <= k <= n*(n-1)/2) begins as follows:
  1;
  1,  1;
  1,  3,  6,   1;
  1,  6, 27,  60,   66,   24,    1;
  1, 10, 75, 350, 1120, 2130, 2595, 1730, 690, 80, 1;
  ...
		

Crossrefs

Row sums give A007984.
Row lengths give A000124.
Column k=1 is A000217.
Column k=2 is A239568.