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

 


A353352
Number of divisors d of n for which A048675(d) is a multiple of 3.
14
1, 1, 1, 1, 1, 2, 1, 2, 1, 1, 1, 2, 1, 2, 2, 2, 1, 2, 1, 2, 1, 1, 1, 3, 1, 2, 2, 2, 1, 3, 1, 2, 2, 1, 2, 3, 1, 2, 1, 3, 1, 3, 1, 2, 2, 1, 1, 4, 1, 2, 2, 2, 1, 3, 1, 3, 1, 2, 1, 4, 1, 1, 2, 3, 2, 3, 1, 2, 2, 3, 1, 4, 1, 2, 2, 2, 2, 3, 1, 3, 2, 1, 1, 4, 1, 2, 1, 3, 1, 4, 1, 2, 2, 1, 2, 4, 1, 2, 2, 3, 1, 3, 1, 3, 3
OFFSET
1,6
COMMENTS
a(n) is the number of terms of A332820 that divide n.
FORMULA
a(n) = Sum_{d|n} A353350(d).
a(n) = A000005(n) - A353351(n).
a(p) = 1 for all primes p.
a(n) = a(A003961(n)) = a(A348717(n)), for all n >= 1.
From Peter Munn, Apr 22 2022: (Start)
a(n) = A353328(n) = A353329(n) iff 3|A000005(n) [i.e., A353470(n) = 1].
Otherwise a(n) = A353328(n) iff A048675(n) == 1 (mod 3); a(n) = A353329(n) iff A048675(n) == 2 (mod 3).
(End)
MATHEMATICA
f[p_, e_] := e*2^(PrimePi[p] - 1); q[1] = True; q[n_] := Divisible[Plus @@ f @@@ FactorInteger[n], 3]; a[n_] := DivisorSum[n, 1 &, q[#] &]; Array[a, 100] (* Amiram Eldar, Apr 15 2022 *)
PROG
(PARI)
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));
A353352(n) = sumdiv(n, d, A353350(d));
CROSSREFS
Inverse Möbius transform of A353350.
Cf. also A353332, A353354, A353362.
Sequence in context: A049046 A227945 A003647 * A084217 A245548 A025903
KEYWORD
nonn
AUTHOR
Antti Karttunen, Apr 15 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 21 11:19 EDT 2024. Contains 376084 sequences. (Running on oeis4.)