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.

A268222 Triangle read by rows: T(n,k) (n>=5, k=3..n-2) is the number of topologies t on n points having exactly k open sets such that t contains exactly one open set of size m for each m in {0,4,5,6,...,s,n} where s is the size of the largest proper open set in t.

Original entry on oeis.org

5, 15, 30, 35, 105, 210, 70, 280, 840, 1680, 126, 630, 2520, 7560, 15120, 210, 1260, 6300, 25200, 75600, 151200, 330, 2310, 13860, 69300, 277200, 831600, 1663200, 495, 3960, 27720, 166320, 831600, 3326400, 9979200, 19958400, 715, 6435, 51480, 360360, 2162160, 10810800, 43243200, 129729600, 259459200
Offset: 5

Views

Author

N. J. A. Sloane, Jan 30 2016

Keywords

Examples

			Triangle begins:
    5;
   15,   30;
   35,  105,  210;
   70,  280,  840,  1680;
  126,  630, 2520,  7560, 15120;
  210, 1260, 6300, 25200, 75600, 151200;
...
		

Crossrefs

Row sums give A268219.
Triangles in this series: A119741, A268217, A268221, A268222, A268223.
Cf. A282507.

Programs

  • Mathematica
    i = 4; Table[Table[Binomial[n, i] FactorialPower[n - i, k], {k, 0,
    n - i - 1}], {n, 2, 12}] // Grid (* Geoffrey Critzer, Feb 19 2017 *)

Extensions

Title clarified and more terms added by Geoffrey Critzer, Feb 19 2017
Missing a(19) inserted and a(41) onwards from Andrew Howroyd, Aug 10 2025