A118877 Determinant of n-th continuous block of 4 consecutive composites.
-12, -12, 6, 6, -18, -18, 12, 12, -24, -24, 18, -3, -28, -2, -2, 24, 24, -36, -36, -2, -2, 32, -3, -42, 36, 36, -48, -48, 42, -3, -52, -2, -2, 48, -3, -58, -2, -2, 54, 54, -66, -66, -2, -2, 62, -3, -72, 66, 66, -78, -78, -2, -2, 74, -3, -84, 78, -3, -88, -2, -2
Offset: 1
Examples
a(1) = -12 = |4 6| |8 9|.
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..1000
Programs
-
Mathematica
Module[{nn=100,cmps},cmps=Select[Range[nn],CompositeQ];Det[ ArrayReshape[ #,{2,2}]]&/@Table[Take[cmps,{n,n+3}],{n,Length[cmps]-3}]] (* Harvey P. Dale, Aug 03 2020 *)
Comments