OFFSET
1,3
COMMENTS
Conjecture: Given A126988^k, k any positive integer, A128392 is the only sequence in the infinite set with zeros.
Each application of A126988 corresponds to the Dirichlet convolution of the natural numbers with the sequence on the right. Since both Ramanujan's tau function A000594 and the natural numbers are multiplicative, the resulting sequence will also be multiplicative. - Andrew Howroyd, Aug 03 2018
LINKS
Andrew Howroyd, Table of n, a(n) for n = 1..1000
MATHEMATICA
nmax = 40;
M = Table[If[Mod[n, m] == 0, n/m, 0], {n, 1, nmax}, {m, 1, nmax}];
MatrixPower[M, 12].RamanujanTau[Range[nmax]] (* Jean-François Alcover, Sep 20 2019 *)
PROG
(PARI) seq(n, k=12)={my(u=vector(n, n, n), v=vector(n, n, ramanujantau(n))); for(i=1, k, v=dirmul(u, v)); v} \\ Andrew Howroyd, Aug 03 2018
CROSSREFS
KEYWORD
sign,mult
AUTHOR
Gary W. Adamson, Feb 28 2007
EXTENSIONS
Terms a(11) and beyond from Andrew Howroyd, Aug 03 2018
STATUS
approved