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.

A363378 Third Lie-Betti number of a cycle graph on n vertices.

Original entry on oeis.org

12, 25, 41, 68, 105, 152, 210, 280, 363, 460, 572, 700, 845, 1008, 1190, 1392, 1615, 1860, 2128, 2420, 2737, 3080, 3450, 3848, 4275, 4732, 5220, 5740, 6293, 6880, 7502, 8160, 8855, 9588, 10360, 11172, 12025, 12920, 13858
Offset: 3

Views

Author

Samuel J. Bevins, Jun 01 2023

Keywords

Comments

Sequence T(n,3) in A360572.

Crossrefs

Cf. A005581, A054000, A028347, A000027, A360572 (cycle graph triangle)

Programs

  • Python
    def A363378(n):
        values = [12,25,41]
        for i in range(6, n+1):
            result = (i*(i+11)*(i-2))/6
            values.append(result)
        return values

Formula

a(3) = 12, a(4) = 25, a(5) = 41, a(n) = n*(n+11)*(n-2)/6 for n >= 6.
a(n) = A005581(n-4) + A054000(n-1) + A028347(n-2) + A000027(n) for n >= 6.
a(n) = A106058(n+1) - 2 for n >= 6. - Hugo Pfoertner, Jun 02 2023