The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A364946 Sixth Lie-Betti number of a path graph on n vertices. 0
0, 0, 0, 4, 33, 140, 424, 1039, 2213, 4262, 7606, 12786, 20482, 31532, 46952, 67957, 95983, 132710, 180086, 240352, 316068, 410140, 525848, 666875, 837337, 1041814, 1285382, 1573646, 1912774, 2309532, 2771320, 3306209, 3922979, 4631158, 5441062 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
COMMENTS
Sequence T(n,6) in A360571.
LINKS
Marco Aldi and Samuel Bevins, L_oo-algebras and hypergraphs, arXiv:2212.13608 [math.CO], 2022. See page 9.
Meera Mainkar, Graphs and two step nilpotent Lie algebras, arXiv:1310.3414 [math.DG], 2013. See page 1.
Eric Weisstein's World of Mathematics, Path Graph.
FORMULA
a(1) = a(2) = a(3) = 0, a(4) = 4, a(5) = 33, a(n) = (n^6 + 45*n^5 - 125*n^4 - 2865*n^3 + 23524*n^2 - 76740*n + 98640)/720 for n >= 6.
G.f.: x^4*(4 + 5*x - 7*x^2 - 3*x^3 - 4*x^4 + 15*x^5 - 15*x^6 + 7*x^7 - x^8)/(1 - x)^7. - Stefano Spezia, Aug 29 2023
PROG
(Python)
def A364946_up_to(n):
values = [0, 0, 0, 4, 33]
for i in range(6, n+1):
result = (i**6 + 45*i**5 - 125*i**4 - 2865*i**3 + 23524*i**2 - 76740*i + 98640)/720
values.append(int(result))
return values
CROSSREFS
Cf. A360571 (path graph triangle), A088459 (second Lie-Betti number of path graphs), A361230, A362007, A364579.
Sequence in context: A152041 A041027 A362820 * A209034 A095671 A278671
KEYWORD
nonn,easy
AUTHOR
Samuel J. Bevins, Aug 14 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified May 13 03:50 EDT 2024. Contains 372497 sequences. (Running on oeis4.)