login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

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.
0
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,2
COMMENTS
The motivation for this sequence is expression 1 in Terence Tao's blog post "Correlations of the von Mangoldt and higher divisor functions I. Long shift ranges".
FORMULA
a(n) = A298825(A001694(n)). - Mats Granvik, Oct 08 2018
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]
CROSSREFS
Cf. A191898.
Sequence in context: A115054 A228561 A049208 * A337340 A061093 A067178
KEYWORD
sign
AUTHOR
Mats Granvik, Jun 28 2018
STATUS
approved