OFFSET
0,2
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..100
A. Knutson and P. Zinn-Justin, A scheme related to the Brauer loop model, Adv. in Math. 214 (2007), 40-77.
FORMULA
a(2n) = 2^n * det(binomial(2i+2j+1,2i)), 0<=i,j<=n-1; a(2n+1) = 2^(n+1) * det(binomial(2i+2j+3,2i+1)), 0<=i,j<=n-1.
EXAMPLE
In size 1, the scheme {x^2=0} is of degree 2. in size 2, the scheme of matrices {{m11,m12},{m21,m22}} that square to zero is generically reduced and the corresponding reduced scheme is given by the equations m11+m22=0 and m11^2+m12 m21=0, hence also of degree 2.
MATHEMATICA
a[1] = 2; a[n_] := If[EvenQ[n], 2^(n/2) Det[Table[Binomial[2i + 2j + 1, 2i], {i, 0, n/2-1}, {j, 0, n/2-1}]], 2^((n-1)/2+1) Det[Table[Binomial[2i + 2j + 3, 2i + 1], {i, 0, (n-1)/2-1}, {j, 0, (n-1)/2-1}]]];
Array[a, 12] (* Jean-François Alcover, Dec 04 2018 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul Zinn-Justin, Aug 06 2007
EXTENSIONS
More terms from Alois P. Heinz, Dec 04 2018
STATUS
approved