OFFSET
1,2
LINKS
Shalosh B. Ekhad and Doron Zeilberger, On the Number of Singular Vector Tuples of Hyper-Cubical Tensors, 2016.
Shalosh B. Ekhad and Doron Zeilberger, On the number of Singular Vector Tuples of Hyper-Cubical Tensors, arXiv preprint arXiv:1605.00172 [math.CO], 2016.
MATHEMATICA
a[n_] := Module[{a, b, c, d, s}, s = Series[(
((a + b + c)^n - d^n)*
((b + c + d)^n - a^n)*
((c + d + a)^n - b^n)*
((d + a + b)^n - c^n))/(
(a + b + c - d)*
(b + c + d - a)*
(c + d + a - b)*
(d + a + b - c)),
{a, 0, n}, {b, 0, n}, {c, 0, n}, {d, 0, n}] // Normal // Expand;
Cases[List @@ s, k_Integer a^(n-1) b^(n-1) c^(n-1) d^(n-1)] /. (a|b|c|d) -> 1 // First
];
Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 1, 17}] (* Jean-François Alcover, Aug 19 2018, after A271905 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Doron Zeilberger, May 02 2016
STATUS
approved