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!)
A207259 The number of 2 X 2 matrices with no real eigenvalues and whose entries are integers of absolute value at most n. 3
14, 148, 642, 1832, 4246, 8420, 15202, 25296, 39742, 59668, 86338, 120840, 165174, 220356, 288322, 370816, 470254, 587940, 726994, 888728, 1076422, 1292404, 1539442, 1819440, 2136734, 2493700, 2893586, 3339544, 3835782, 4384036, 4990466, 5656752, 6388158 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Hiroaki Yamanouchi and Chai Wah Wu, Table of n, a(n) for n = 1..1000 (terms for n = 1..100 from Hiroaki Yamanouchi)
FORMULA
a(n) = (2*n+1)^4 - A219736(n).
MAPLE
a:=proc(n)
local x, y, z, w, Eig, count;
count:=0;
for x from -n to n do
for y from -n to n do
for z from -n to n do
for w from -n to n do
Eig:=LinearAlgebra:-Eigenvalues(Matrix([[x, y], [z, w]]));
if Im(Eig[1]) <> 0 then count:=count+1; fi;
od:
od:
od:
od:
count;
end:
CROSSREFS
Sequence in context: A027473 A002451 A302994 * A016170 A081201 A065899
KEYWORD
nonn,easy
AUTHOR
W. Edwin Clark, Nov 26 2012
EXTENSIONS
a(16)-a(33) from Hiroaki Yamanouchi, Oct 03 2014
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 18 16:22 EDT 2024. Contains 371780 sequences. (Running on oeis4.)