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

A219693
The number of symmetric positive definite 2 X 2 matrices whose entries are integers of absolute value at most n.
1
1, 10, 31, 68, 133, 226, 351, 512, 721, 986, 1303, 1676, 2125, 2642, 3231, 3896, 4665, 5522, 6479, 7532, 8701, 9986, 11383, 12896, 14553, 16354, 18287, 20364, 22605, 24994, 27543, 30248, 33145, 36226, 39479, 42908, 46557, 50402, 54439, 58680
OFFSET
1,2
COMMENTS
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.
MAPLE
a:=proc(n)
local x, y, z, count;
count:=0;
for x from 1 to n do
for y from 1 to n do
for z from -n to n do
if x>0 and x*y > z^2 then count:=count+1; fi;
od:
od:
od:
count;
end:
MATHEMATICA
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 *)
CROSSREFS
Sequence in context: A051943 A059306 A192023 * A297507 A163655 A041190
KEYWORD
nonn
AUTHOR
W. Edwin Clark, Nov 25 2012
STATUS
approved