A377040 Antidiagonal-sums of absolute value of the array A377038(n,k) = n-th term of k-th differences of squarefree numbers (A005117).
1, 3, 4, 9, 13, 18, 28, 39, 106, 267, 595, 1212, 2286, 4041, 6720, 10497, 15387, 20914, 25894, 29377, 37980, 70785, 175737, 343806, 579751, 861934, 1162080, 1431880, 1688435, 2589533, 8731932, 23911101, 58109574, 130912573, 276067892, 543833014, 992784443
Offset: 0
Keywords
Examples
The fourth antidiagonal of A377038 is (6, 1, -1, -2, -3), so a(4) = 13.
Crossrefs
Programs
-
Mathematica
nn=20; t=Table[Take[Differences[NestList[NestWhile[#+1&,#+1,!SquareFreeQ[#]&]&,1,2*nn],k],nn],{k,0,nn}]; Total/@Table[Abs[t[[j,i-j+1]]],{i,nn},{j,i}]
Comments