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

A210284
Number of 2 X 2 matrices with all elements in {0,1,...,n} and determinant n+1.
2
0, 0, 1, 11, 9, 42, 23, 81, 72, 126, 79, 273, 121, 268, 280, 416, 227, 624, 299, 761, 570, 690, 457, 1384, 672, 1004, 982, 1489, 769, 2108, 893, 1980, 1500, 1768, 1574, 3308, 1303, 2250, 2118, 3658, 1637, 4120, 1823, 3751, 3527, 3320
OFFSET
0,4
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]
Table[c[n, n + 1], {n, 0, z1}] (* A210284 *)
CROSSREFS
Cf. A210000.
Sequence in context: A196006 A196003 A072208 * A219746 A335854 A220664
KEYWORD
nonn
AUTHOR
Clark Kimberling, Mar 19 2012
STATUS
approved