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

A197168
Number of 2 X 2 integer matrices with elements from {1,...,n} whose determinant is 2.
6
0, 0, 2, 6, 18, 30, 50, 70, 98, 118, 162, 198, 226, 270, 338, 366, 426, 486, 554, 622, 682, 726, 842, 926, 986, 1062, 1202, 1270, 1362, 1470, 1562, 1678, 1802, 1878, 2066, 2158, 2250, 2390, 2602, 2694, 2818, 2974, 3114, 3278, 3434, 3526, 3786, 3966, 4090, 4254, 4490
OFFSET
0,3
COMMENTS
It is also the number of 2 X 2 integer matrices with elements from {1,...,n} whose determinant is -2.
FORMULA
a(n) = A209973(n) - 4*n - 2 for n >= 2. - Chai Wah Wu, Nov 28 2016
MATHEMATICA
Table[cnt = 0; Do[If[a*d-b*c == 2, cnt++], {a, n}, {b, n}, {c, n}, {d, n}]; cnt, {n, 50}] (* T. D. Noe, Oct 11 2011 *)
CROSSREFS
Sequence in context: A066286 A324541 A351875 * A373515 A288815 A277200
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(0) added by Chai Wah Wu, Nov 27 2016
STATUS
approved