cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A284309 Number of singular vector tuples for a general n-dimensional {n}^n tensor.

Original entry on oeis.org

1, 2, 37, 51264, 14346274601, 1435747717722810960, 79118094349714452632485774477, 3409699209687052091502059492845005192560640, 154730604283618051465998344012575355916858352712971348277665, 9576184829775011641104888042379740657096306109466956243538100418643876547244800
Offset: 1

Views

Author

Alois P. Heinz, Mar 24 2017

Keywords

Crossrefs

Main diagonal of A284308.

Programs

  • 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 *)