A086815 a(n)=(n-1)*n^(2*n).
0, 16, 1458, 196608, 39062500, 10883911680, 4069338437094, 1970324836974592, 1200757082375992968, 900000000000000000000, 814027493868397611133210, 874465319237299285467856896, 1100799962319223399900795392108
Offset: 1
Keywords
Examples
For n=3 the matrix is : [1 2 1 1 5 1], [1 2 2 4 2 2], [3 3 3 3 3 6], [4 2 4 4 5 4], [1 5 5 4 5 5], [6 6 3 6 6 6]
Crossrefs
Cf. A062206.
Programs
-
Mathematica
Table[(n-1)n^(2n),{n,20}] (* Harvey P. Dale, Jul 23 2013 *)
-
PARI
a(n)=(n-1)*n^(2*n)
Comments