A316274 Nonzero terms in row sums of the lower triangular part of a square matrix formed by Dirichlet convolution of adjacent columns in the square matrix A191898.
1, -4, -16, -9, -48, -25, -54, -128, 36, -49, -320, 144, -243, 100, 216, -121, -250, -768, 432, -169, 196, 400, 864, 225, -972, -1792, 1152, -289, 972, -686, -361, 784, 1200, 2592, 441, 484, 1000
Offset: 1
Keywords
Links
Crossrefs
Cf. A191898.
Programs
-
Mathematica
Clear[nn, h, a, n, d, b, m]; nn = 500; h = 1; a[n_] := If[n < 1, 0, Sum[d MoebiusMu@d, {d, Divisors[n]}]]; TableForm[Transpose[Table[{n, a[n]}, {n, 1, nn}]]]; b = DeleteCases[ Table[Sum[ Sum[If[Mod[n, k] == 0, a[GCD[n/k, m]]*a[GCD[k, m + h]], 0], {k, 1, n}], {m, 1, n}], {n, 1, nn}], 0]
Comments