This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A210291 #7 Nov 29 2016 20:57:20 %S A210291 0,0,6,40,125,323,647,1235,2074,3337,5057,7477,10436,14490,19436, %T A210291 25591,33015,42259,52849,65833,80528,97909,117905,141163,166651, %U A210291 196474,229796,267289,308712,355766,406488,464094,526402,595477,670963 %N A210291 Number of 2 X 2 matrices with all elements in {0,1,...,n} and determinant >n. %C A210291 See A210000 for a guide to related sequences. %H A210291 Chai Wah Wu, <a href="/A210291/b210291.txt">Table of n, a(n) for n = 0..1000</a> %t A210291 a = 0; b = n; z1 = 45; %t A210291 t[n_] := t[n] = Flatten[Table[w*z - x*y, {w, a, b}, {x, a, b}, {y, a, b}, {z, a, b}]] %t A210291 c[n_, k_] := c[n, k] = Count[t[n], k] %t A210291 c1[n_, m_] := c1[n, m] = Sum[c[n, k], {k, 0, m}] %t A210291 Table[c1[n, n^2] - c1[n, n], {n, 0, z1}] (* A210291 *) %Y A210291 Cf. A210000. %K A210291 nonn %O A210291 0,3 %A A210291 _Clark Kimberling_, Mar 20 2012