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 A219693 #11 Oct 11 2019 03:03:53 %S A219693 1,10,31,68,133,226,351,512,721,986,1303,1676,2125,2642,3231,3896, %T A219693 4665,5522,6479,7532,8701,9986,11383,12896,14553,16354,18287,20364, %U A219693 22605,24994,27543,30248,33145,36226,39479,42908,46557,50402,54439,58680 %N A219693 The number of symmetric positive definite 2 X 2 matrices whose entries are integers of absolute value at most n. %C A219693 A symmetric matrix [[a,c],[c,b]] is positive definite if and only if a > 0 and ab - c^2 > 0. So a(n) is also the number of triples (a,b,c) satisfying these inequalities with a,b,c having absolute value at most n. %H A219693 Wikipedia, <a href="http://en.wikipedia.org/wiki/Positive-definite_matrix">Positive Definite Matrix</a> %p A219693 a:=proc(n) %p A219693 local x,y,z,count; %p A219693 count:=0; %p A219693 for x from 1 to n do %p A219693 for y from 1 to n do %p A219693 for z from -n to n do %p A219693 if x>0 and x*y > z^2 then count:=count+1; fi; %p A219693 od: %p A219693 od: %p A219693 od: %p A219693 count; %p A219693 end: %t A219693 Table[cnt = 0; Do[If[a*b > c^2, cnt++], {a, n}, {b, n}, {c, -n, n}]; cnt, {n, 40}] (* _T. D. Noe_, Nov 26 2012 *) %K A219693 nonn %O A219693 1,2 %A A219693 _W. Edwin Clark_, Nov 25 2012