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.

A360936 Triangle read by rows: T(n,k) is the k-th Lie-Betti number of the ladder graph on 2*n vertices, n >= 2, k >= 0.

Original entry on oeis.org

1, 2, 2, 1, 1, 4, 14, 25, 28, 25, 14, 4, 1, 1, 6, 32, 89, 204, 357, 437, 437, 357, 204, 89, 32, 6, 1, 1, 8, 54, 207, 680, 1650, 3201, 5310, 6993, 7508, 6993, 5310, 3201, 1650, 680, 207, 54, 8, 1
Offset: 1

Views

Author

Samuel J. Bevins, Feb 26 2023

Keywords

Examples

			Triangle begins:
   k=0 1  2   3   4    5    6    7    8    9   10   11   12   13  14  15 16
n=1: 1 2  2   1
n=2: 1 4 14  25  28   25   14    4    1
n=3: 1 6 32  89 204  357  437  437  357  204   89   32    6    1
n=4: 1 8 54 207 680 1650 3201 5310 6993 7508 6993 5310 3201 1650 680 207 54
...
		

Crossrefs

Cf. A360571 (path graph), A360572 (cycle graph), A088459 (star graph), A360625 (complete graph), A360937 (wheel graph)

Programs

  • SageMath
    # uses[betti_numbers, LieAlgebraFromGraph from A360571]
    def A360936(n):
        return betti_numbers(LieAlgebraFromGraph(graphs.LadderGraph(n)))