OFFSET
1,1
COMMENTS
No negative terms in range 1 .. 2^20.
Apparently, A030059 gives the positions of all zeros.
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..16384
FORMULA
PROG
(PARI)
up_to = 16384;
A038040(n) = (n*numdiv(n));
DirInverseCorrect(v) = { my(u=vector(#v)); u[1] = (1/v[1]); for(n=2, #v, u[n] = (-u[1]*sumdiv(n, d, if(d<n, v[n/d]*u[d], 0)))); (u) }; \\ Compute the Dirichlet inverse of the sequence given in input vector v.
v328722 = DirInverseCorrect(vector(up_to, n, A038040(n)));
A328722(n) = v328722[n];
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 18 2021
STATUS
approved