OFFSET
1,2
LINKS
Shalosh B. Ekhad and Doron Zeilberger, On the Number of Singular Vector Tuples of Hyper-Cubical Tensors, 2016; also arXiv preprint arXiv:1605.00172, 2016.
Shmuel Friedland and Giorgio Ottaviani, The number of singular vector tuples and uniqueness of best rank-one approximation of tensors, Found. Comput. Math. 14 (2014), no. 6, 1209-1242.
Bernd Sturmfels, Tensors and Their Eigenvalues, Notices AMS, 63 (No. 6, 2016), 606-606.
MATHEMATICA
a[1] = 1;
a[n_] := Module[{Z, z, P},
Z[i_] := Sum[z[k], {k, 1, n}] - z[i];
P = Product[(Z[i]^n - z[i]^n)/(Z[i] - z[i]), {i, 1, n}] // Cancel;
SeriesCoefficient[P, Sequence @@ Table[{z[i], 0, n-1}, {i, 1, n}]]
];
Table[an = a[n]; Print["a(", n, ") = ", an]; an, {n, 1, 5}] (* Jean-François Alcover, Aug 06 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 24 2017
STATUS
approved