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;
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.
v101035 = DirInverseCorrect(vector(up_to, n, A018804(n)));
A101035(n) = v101035[n];
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Aug 18 2021
STATUS
approved