OFFSET
1,1
COMMENTS
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
a(1) = -14 because the determinant of the first block of 4 consecutive semiprimes is:
|4. 6.|
|9. 10|.
a(4) = 0 because the determinant of the 4th block of 4 semiprimes is the first of a presumably infinite number of singular matrices:
|10. 14.|
|15. 21.|.
a(8) = 76, the first positive value in the sequence:
|22. 25.|
|26. 33.|.
MAPLE
MATHEMATICA
nmax = 58; spmax = nmax; SP = {};
While[nmax+3 > Length[SP], spmax += nmax; SP = Select[Range[spmax], PrimeOmega[#] == 2&]];
a[n_] := SP[[n]] SP[[n+3]] - SP[[n+1]] SP[[n+2]];
Table[a[n], {n, 1, nmax}] (* Jean-François Alcover, Aug 01 2023 *)
#[[1]]#[[4]]-#[[2]]#[[3]]&/@Partition[Select[Range[300], PrimeOmega[#]==2&], 4, 1] (* Harvey P. Dale, Sep 08 2024 *)
CROSSREFS
KEYWORD
easy,sign
AUTHOR
Jonathan Vos Post, May 22 2006
EXTENSIONS
Better definition from Jens Kruse Andersen, May 03 2008
STATUS
approved