The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A119514 Determinant of n X n matrix of first n^2 squarefree numbers. 1
1, -1, -4, -84, 64, 320, 1540, -4296, 22774, -11504, -5472, 13752, -18325, -4808916, 22766346, 5005440, 519618712, -216839949, -913585532, 4352326994, 15724880927, 0, -44298224496, 783852776697, -173267864064, -601092343023697, 26866456767483, 39073758546015 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
The absolute value of a(1) through a(3) and a(5), are squares. None of the absolute values of a(1) through a(8) are themselves squarefree.
LINKS
EXAMPLE
a(2) = -1 =
|1 2|
|3 5|.
a(3) = -4 =
|.1..2..3|
|.5..6..7|
|10.11.13|.
MATHEMATICA
s = Select[Range[1500], SquareFreeQ]; n = Length[s]; m = Floor[Sqrt[n]]; seq = {}; Do[mat = Partition[s[[1 ;; k^2]], k]; AppendTo[seq, Det[mat]], {k, 1, m}]; seq (* Amiram Eldar, Aug 23 2019 *)
Module[{nn=30, sqfr}, sqfr=Select[Range[2 nn^2], SquareFreeQ]; Table[Det[ Partition[ Take[ sqfr, n^2], n]], {n, nn}]] (* Harvey P. Dale, Jul 09 2022 *)
CROSSREFS
Sequence in context: A292409 A345989 A333458 * A316490 A102982 A231741
KEYWORD
easy,sign
AUTHOR
Jonathan Vos Post, May 27 2006
EXTENSIONS
More terms from Amiram Eldar, Aug 23 2019
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 June 9 02:41 EDT 2024. Contains 373227 sequences. (Running on oeis4.)