OFFSET
1,1
COMMENTS
LINKS
Eric Weisstein's World of Mathematics, Circulant Matrix.
EXAMPLE
a(2) = -20 = determinant
|4,6|
|6,4|.
a(3) = 361 = 19^2 = determinant
|4,6,9|
|9,4,6|
|6,9,4|.
MAPLE
MATHEMATICA
nmax = 13;
sp = Select[Range[3 nmax], PrimeOmega[#] == 2&];
a[n_] := Module[{M}, M[1] = sp[[1 ;; n]];
M[k_] := M[k] = RotateRight[M[k - 1]];
Det[Table[M[k], {k, 1, n}]]];
Table[a[n], {n, 1, nmax}] (* Jean-François Alcover, Feb 16 2023 *)
CROSSREFS
KEYWORD
easy,sign
AUTHOR
Jonathan Vos Post, May 20 2006
EXTENSIONS
Edited by N. J. A. Sloane at the suggestion of Andrew S. Plewe, Aug 23 2007
STATUS
approved