Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #10 Jan 11 2017 01:32:17
%S 0,1,4,9,20,23,51,55,88,79,181,121,214,222,323,227,484,299,605,488,
%T 604,457,1102,623,902,876,1269,769,1754,893,1728,1370,1634,1436,2811,
%U 1303,2100,1964,3184,1637,3622,1823,3403,3171,3138
%N Number of 2 X 2 matrices having all terms in {1,...,n} and determinant n+1.
%C For a guide to related sequences, see A210000.
%H Chai Wah Wu, <a href="/A211055/b211055.txt">Table of n, a(n) for n = 1..3000</a>
%t a = 1; b = n; z1 = 45;
%t t[n_] := t[n] = Flatten[Table[w*z - x*y, {w, a, b}, {x, a, b}, {y, a, b}, {z, a, b}]]
%t c[n_, k_] := c[n, k] = Count[t[n], k]
%t Table[c[n, n + 1], {n, 1, z1}] (* A211055 *)
%Y Cf. A210000, A211053.
%K nonn
%O 1,3
%A _Clark Kimberling_, Mar 31 2012