OFFSET
1,1
COMMENTS
From Antti Karttunen, Aug 18 2021: (Start)
No negative terms in range 1 .. 2^20.
Apparently zeros occur only on (some of the) positions given by A030059, with exceptions for example on n = 70, 105, 110, 130, 154, etc, where a(n) > 0.
(End)
LINKS
Antti Karttunen, Table of n, a(n) for n = 1..20000
Antti Karttunen, Data supplement: n, a(n) computed for n = 1..65537
FORMULA
PROG
(PARI)
up_to = 20000;
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
v323881 = DirInverseCorrect(vector(up_to, n, A126760(n)));
A323881(n) = v323881[n];
CROSSREFS
KEYWORD
nonn,look
AUTHOR
Antti Karttunen, Feb 08 2019
STATUS
approved