A380149 Characteristic polynomial of the tesseract graph: a(n) = n^6*(n^2-16)*(n^2-4)^4.
0, -1215, 0, -3189375, 0, 27348890625, 978447237120, 15920336210625, 163074539520000, 1214314872035265, 7134511104000000, 34856907746165505, 146828238520320000, 547377978676010625, 1841813423998894080, 5678883183381890625, 16238028554439229440, 43474602051830210625, 109846357522513920000
Offset: 0
Links
- Paolo Xausa, Table of n, a(n) for n = 0..10000
- Eric Weisstein's World of Mathematics, Characteristic Polynomial.
- Eric Weisstein's World of Mathematics, Tesseract Graph.
- Eric Weisstein's World of Mathematics, Graph Spectrum.
- Wikipedia, Hypercube Graph.
Programs
-
Mathematica
A380149[n_] := n^6*(n^2 - 16)*(n^2 - 4)^4; Array[A380149, 20, 0] (* Paolo Xausa, Jan 21 2025 *)
-
Python
a = lambda n: (n**6)*(n**2-16)*(n**2-4)**4 print([a(n) for n in range(0,19)])
Formula
a(n) = -4096*n^6 + 4352*n^8 - 1792*n^10 + 352*n^12 - 32*n^14 + n^16.
Comments