login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A353348 Dirichlet inverse of A353350, where A353350 is the characteristic function for numbers k such that A048675(k) is a multiple of 3. 13
1, 0, 0, 0, 0, -1, 0, -1, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, -1, 0, 0, 0, 0, 0, -1, -1, 0, 0, 0, 0, 0, -1, 0, -1, 0, 0, -1, 0, 0, 0, 0, 0, -1, 0, 0, 0, 1, 0, -1, -1, 0, 0, 0, 0, 0, 0, -1, 0, 0, 0, 0, -1, 0, -1, 0, 0, -1, -1, 0, 0, 0, 0, -1, 0, 0, -1, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 0, 0, 1, 0, -1, -1, 0, -1, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,120
COMMENTS
From Antti Karttunen, Jan 17 2023: (Start)
a(120) = 3 is the first term with absolute value larger than 1.
As A353350 is not multiplicative, neither is this sequence.
For all numbers n in A359830 (complement of A332820), a(n) = 0. Proof: In the convolution formula, when n is any term of A359830, at least the other of the divisors (n/d) and d is a term of A359830, because a product of any two terms of A332820 stays in A332820 (as it is a multiplicative semigroup), while a product of a term of A332820 and its complement A359830 is always in A359830. As A353350 is zero for all A359830, it is easy to see by induction that also a(n) is zero for all such numbers. Therefore, nonzero values (including any odd values, see A359827) occur only on a subset of A332820, and A359826(n) <= A353350(n).
(End)
LINKS
FORMULA
a(1) = 1; a(n) = -Sum_{d|n, d < n} A353350(n/d) * a(d).
a(n) = A353349(n) - A353350(n).
a(p) = 0 for all primes p.
a(n) = a(A003961(n)) = a(A348717(n)), for all n >= 1.
MATHEMATICA
f[p_, e_] := e*2^(PrimePi[p] - 1); s[1] = 1; s[n_] := Boole @ Divisible[Plus @@ f @@@ FactorInteger[n], 3]; a[1] = 1; a[n_] := -DivisorSum[n, a[#]*s[n/#] &, # < n &]; Array[a, 100] (* Amiram Eldar, Apr 15 2022 *)
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
A048675(n) = { my(f = factor(n)); sum(k=1, #f~, f[k, 2]*2^primepi(f[k, 1]))/2; };
A353350(n) = (0==(A048675(n)%3));
v353348 = DirInverseCorrect(vector(up_to, n, A353350(n)));
A353348(n) = v353348[n];
(PARI)
\\ Memoized variant, with no fixed limit for how many terms:
memoA353348 = Map();
A353348(n) = if(1==n, 1, my(v); if(mapisdefined(memoA353348, n, &v), v, v = -sumdiv(n, d, if(d<n, A353350(n/d)*A353348(d), 0)); mapput(memoA353348, n, v); (v))); \\ Antti Karttunen, Jan 17 2023
CROSSREFS
Cf. A003961, A048675, A332820, A348717, A353349, A353350, A359826 (parity of terms), A359827 (positions of odd terms).
Sequence in context: A247223 A186741 A173864 * A359826 A353350 A354097
KEYWORD
sign
AUTHOR
Antti Karttunen, Apr 15 2022
EXTENSIONS
Second offset added by Antti Karttunen, Jan 17 2023
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 18:05 EDT 2024. Contains 371798 sequences. (Running on oeis4.)