OFFSET
0,5
COMMENTS
Also this is the number of unique polynomials that can be created from products of differences between n terms, such that the polynomial expansion includes each term to the 4th power.
EXAMPLE
For n=2, the only polynomial is: (x_1 - x_2)^4.
Which corresponds to the following adjacency matrix:
[0,4
4,0].
For n=3, the only polynomial is: (x_1 - x_2)^2 * (x_1 - x_3)^2 * (x_2 - x_3)^2.
Which corresponds to the following adjacency matrix:
[0, 2, 2
2, 0, 2
2, 2, 0].
For n=4, an example of a polynomial would be (x_1 - x_3)^3 * (x_1 - x_4)^1 * (x_2 - x_3)^1 * (x_2 - x_4)^3 = (x_1^4 * x_2^4) + (x_3^4 * x_4^4) + ... + {other polynomial terms}.
And this corresponds to the following adjacency matrix:
[0, 0, 3, 1
0, 0, 1, 3
3, 1, 0, 0
1, 3, 0, 0].
CROSSREFS
KEYWORD
nonn
AUTHOR
Arick Grootveld, Nov 20 2023
STATUS
approved