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

A210366
Number of 2 X 2 matrices with all elements in {0,1,...,n} and determinant >=n.
2
1, 3, 18, 61, 168, 368, 749, 1310, 2235, 3493, 5291, 7640, 10869, 14711, 19860, 26051, 33623, 42618, 53725, 66280, 81577, 98739, 118847, 141800, 168435, 197406, 231100, 268595, 310617, 356763, 409136, 465231, 528830, 597397, 673127
OFFSET
0,2
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 - 1], {n, 0, z1}](* A210366 *)
CROSSREFS
Cf. A210000.
Sequence in context: A327768 A074439 A299031 * A000648 A235988 A253942
KEYWORD
nonn
AUTHOR
Clark Kimberling, Mar 20 2012
STATUS
approved