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!)
A067560 Determinant of n X n matrix whose rows are cyclic permutations of 1..n-th nonprime (A018252). 1
1, -15, -209, 3895, 58828, -987012, -32251150, 1259339776, 33525669556, -973603483875, -54655725143297, 3308661532816640, 125757090803564374, -5201646874854669888, -415867280417850247000, 19065322853430198710625, 898206693379667144028053 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
a(4) = 3895 because this is the determinant of [(1,4,6,8), (4,6,8,1), (6,8,1,4), (8,1,4,6)]
MATHEMATICA
NonPrime[n_Integer] := FixedPoint[n + PrimePi[ # ] &, n + PrimePi[n]]; f[n_] := Module[{a = Table[ NonPrime[i], {i, 1, n} ], m = {}, k = 0}, While[k < n, m = Append[m, RotateLeft[a, k]]; k++ ]; Det[m]]; Table[ f[n], {n, 1, 18} ]
Module[{nn=30, np, len}, np=Select[Range[nn], !PrimeQ[#]&]; len=Length[ np]; Table[ Det[NestList[RotateLeft[#]&, Take[np, n], n-1]], {n, len}]] (* Harvey P. Dale, May 30 2021 *)
CROSSREFS
Sequence in context: A274563 A122572 A028230 * A019553 A234249 A112496
KEYWORD
easy,sign
AUTHOR
Robert G. Wilson v, Jan 29 2002
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 30 15:50 EDT 2024. Contains 372136 sequences. (Running on oeis4.)