A363378 Third Lie-Betti number of a cycle graph on n vertices.
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
Keywords
Links
- M. Aldi and S. Bevins, L_oo-algebras and hypergraphs, arXiv:2212.13608 [math.CO], 2022. See page 9.
- M. Mainkar, Graphs and two step nilpotent Lie algebras, arXiv:1310.3414 [math.DG], 2013. See page 1.
- Eric Weisstein's World of Mathematics, Cycle Graph.
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
Comments