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

A209411
Number of 2 x 2 matrices M such that M*transpose(M) == 0 mod n.
3
1, 4, 1, 16, 49, 4, 1, 64, 81, 196, 1, 16, 337, 4, 49, 256, 577, 324, 1, 784, 1, 4, 1, 64, 1825, 1348, 81, 16, 1681, 196, 1, 1024, 1, 2308, 49, 1296, 2737, 4, 337, 3136, 3361, 4, 1, 16, 3969, 4, 1, 256, 2401, 7300, 577, 5392, 5617, 324, 49, 64, 1
OFFSET
1,2
LINKS
MATHEMATICA
gg[n_] := gg[n] = Flatten[Table[{{x, y}, {z, t}}, {x, n}, {y, n}, {t, n}, {z, n}], 3]; nil[n_] := nil[n] = Length@gg[n][[Select[Range[Length[gg[n]]], Mod[gg[n][[#]].Transpose[gg[n][[#]]], n] == {{0, 0}, {0, 0}} &]]]; Table[Print[nil[n]]; nil[n], {n, 1, 22}]
CROSSREFS
Cf. A182039.
Sequence in context: A334063 A111661 A072651 * A369912 A093035 A301624
KEYWORD
nonn,mult
AUTHOR
EXTENSIONS
Keyword:mult added by Andrew Howroyd, Aug 02 2018
STATUS
approved