A377035 Antidiagonal-sums of the absolute value of the array A377033(n,k) = n-th term of the k-th differences of the composite numbers (A002808).
4, 8, 10, 12, 14, 18, 21, 28, 34, 40, 47, 74, 96, 110, 138, 286, 715, 2393, 8200, 25731, 72468, 184716, 431575, 934511, 1892267, 3605315, 6494464, 11116110, 18134549, 28348908, 42701927, 62290660, 88313069, 120999433, 159769475, 221775851, 483797879
Offset: 1
Keywords
Examples
The fourth antidiagonal of A377033 is (9, 1, -1, -1), so a(4) = 12.
Crossrefs
Programs
-
Mathematica
q=Select[Range[120],CompositeQ]; t=Table[Sum[(-1)^(j-k)*Binomial[j,k]*q[[i+k]],{k,0,j}],{j,0,Length[q]/2},{i,Length[q]/2}]; Total/@Table[Abs[t[[j,i-j+1]]],{i,Length[q]/2},{j,i}]