OFFSET
0,3
COMMENTS
a(n) is the number of ways in which is possible to fill an n X n square matrix with n^2 distinct elements. - Stefano Spezia, Sep 16 2018
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..21
MAPLE
seq(factorial(n^2), n=0..10); # Muniru A Asiru, Sep 17 2018
MATHEMATICA
Table[(n^2)!, {n, 0, 9}] (* Vladimir Joseph Stephan Orlovsky, May 19 2011 *)
PROG
(PARI) for(n=0, 10, print1((n^2)!, ", ")) \\ Herman Jamke (hermanjamke(AT)fastmail.fm), Oct 22 2006
(Magma) [Factorial(n^2): n in [0..10]]; // Vincenzo Librandi, May 31 2011
(GAP) List([0..10], n->Factorial(n^2)); # Muniru A Asiru, Sep 17 2018
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Hugo Pfoertner, Sep 18 2003
STATUS
approved