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”).

A353467
a(1) = 1, for n > 1, a(n) = -Sum_{d|n, d<n} a(A252463(n/d)) * a(d).
5
1, -1, 1, 2, -1, -3, 1, -5, -1, 3, -1, 10, 1, -3, 1, 14, -1, 0, 1, -10, -1, 3, -1, -35, 2, -3, 2, 10, 1, 3, -1, -42, 1, 3, -3, 10, 1, -3, -1, 35, -1, -3, 1, -10, -3, 3, -1, 126, -1, -9, 1, 10, 1, -1, 3, -35, -1, -3, -1, -30, 1, 3, 3, 132, -3, 3, -1, -10, 1, 15, 1, -70, -1, -3, -1, 10, 1, -3, 1, -126, -5, 3, -1, 30
OFFSET
1,4
FORMULA
a(1) = 1, for n > 1, a(n) = -Sum_{d|n, d<n} A353468(n/d) * a(d).
For all n >= 1, a(A000040(n)) = ((-1)^n).
PROG
(PARI)
A252463(n) = if(!(n%2), n/2, my(f=factor(n)); for(i=1, #f~, f[i, 1] = precprime(f[i, 1]-1)); factorback(f));
memoA353467 = Map();
A353467(n) = if(1==n, 1, my(v); if(mapisdefined(memoA353467, n, &v), v, v = -sumdiv(n, d, if(d<n, A353467(A252463(n/d))*A353467(d), 0)); mapput(memoA353467, n, v); (v)));
CROSSREFS
Cf. A000040, A252463, A353468 [Dirichlet inverse, also a(A252463(n))], A353469 [sum with it].
Cf. also A353457.
Sequence in context: A079068 A133021 A131208 * A168008 A178810 A374237
KEYWORD
sign
AUTHOR
Antti Karttunen, Apr 21 2022
STATUS
approved