login

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”).

A210291
Number of 2 X 2 matrices with all elements in {0,1,...,n} and determinant >n.
2
0, 0, 6, 40, 125, 323, 647, 1235, 2074, 3337, 5057, 7477, 10436, 14490, 19436, 25591, 33015, 42259, 52849, 65833, 80528, 97909, 117905, 141163, 166651, 196474, 229796, 267289, 308712, 355766, 406488, 464094, 526402, 595477, 670963
OFFSET
0,3
COMMENTS
See A210000 for a guide to related sequences.
MATHEMATICA
a = 0; b = n; z1 = 45;
t[n_] := t[n] = Flatten[Table[w*z - x*y, {w, a, b}, {x, a, b}, {y, a, b}, {z, a, b}]]
c[n_, k_] := c[n, k] = Count[t[n], k]
c1[n_, m_] := c1[n, m] = Sum[c[n, k], {k, 0, m}]
Table[c1[n, n^2] - c1[n, n], {n, 0, z1}] (* A210291 *)
CROSSREFS
Cf. A210000.
Sequence in context: A002595 A263956 A229638 * A336317 A089207 A318169
KEYWORD
nonn
AUTHOR
Clark Kimberling, Mar 20 2012
STATUS
approved