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

A209995
Number of 2 X 2 matrices with all elements in {0,1,...,n} and determinant in {0,1,...,n}.
1
1, 13, 50, 120, 244, 410, 681, 981, 1431, 1948, 2623, 3315, 4373, 5323, 6588, 8009, 9706, 11290, 13535, 15503, 18233, 20912, 23879, 26725, 30910, 34443, 38556, 42887, 48041, 52519, 58888, 63994, 70647, 77056, 83981, 91064, 100373
OFFSET
0,2
COMMENTS
See A210000 for a guide to related sequences.
MATHEMATICA
a = 0; b = n; z1 = 40;
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], {n, 0, z1}] (* A209995 *)
CROSSREFS
Cf. A210000.
Sequence in context: A189054 A231947 A322615 * A050410 A121991 A121990
KEYWORD
nonn
AUTHOR
Clark Kimberling, Mar 18 2012
STATUS
approved