OFFSET
1,3
COMMENTS
Conjecture: a(n) is always nonzero. Moreover, |a(n)|^(1/n) tends to infinity.
We have verified that a(n) is nonzero for all n <= 500.
LINKS
Zhi-Wei Sun, Table of n, a(n) for n = 1..200
EXAMPLE
a(1) = 1 since 1 + 1 = 2 is squarefree.
MATHEMATICA
a[n_]:=a[n]=Det[Table[If[SquareFreeQ[i+j]==True, 1, 0], {i, 1, n}, {j, 1, n}]]
Table[a[n], {n, 1, 20}]
Table[With[{nn=x}, Det[Table[If[SquareFreeQ[i+j], 1, 0], {i, nn}, {j, nn}]]], {x, 40}] (* Harvey P. Dale, Apr 02 2023 *)
CROSSREFS
KEYWORD
sign
AUTHOR
Zhi-Wei Sun, Aug 25 2013
STATUS
approved