login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A338413 Number of 2 X 2 matrices with integer entries in [-n,n] that are diagonalizable over the complex numbers. 1
65, 569, 2281, 6313, 14265, 28033, 49921, 82545, 128945, 192809, 277849, 388185, 528617, 704049, 919857, 1181393, 1495569, 1868249, 2306921, 2818441, 3410809, 4091937, 4870273, 5754449, 6753233, 7877641, 9136441, 10540633, 12101001, 13828465, 15734545, 17830353, 20129713, 22644553, 25387929 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
A diagonalizable matrix A is one which can be expressed as XDY, where D is a diagonal matrix and X = Y^-1 are square matrices. By 'diagonalizable over C,' it is meant that the matrix D has complex entries.
The nondiagonalizable 2 x 2 matrices are the nondiagonal ones whose characteristic polynomial has discriminant 0. - Robert Israel, Nov 12 2020
LINKS
MAPLE
N:= 30: # for a(1)..a(N)
V:= Vector(N):
for t from 1 to N do
for d in select(`<=`, numtheory:-divisors(t^2), N) do
for n from max(d, t^2/d) to N do
V[n]:= V[n] + (8*(n-t)+4)
od od od:
for n from 1 to N do V[n]:= (2*n+1)^4 - (V[n] + 4*n*(2*n+1)) od:
convert(V, list); # Robert Israel, Nov 12 2020
MATHEMATICA
a[n_] := Length[Select[Tuples[Tuples[Range[-n, n], 2], 2], DiagonalizableMatrixQ]];
CROSSREFS
a(1) is given by A091470(2).
Sequence in context: A222588 A286612 A276963 * A211404 A297317 A224099
KEYWORD
nonn
AUTHOR
Matthew Niemiro, Nov 07 2020
EXTENSIONS
More terms from Robert Israel, Nov 12 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 13:41 EDT 2024. Contains 371957 sequences. (Running on oeis4.)