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

A353355
Numbers k for which A353328(k) is equal to A353329(k).
12
1, 4, 6, 8, 9, 12, 14, 15, 18, 20, 25, 26, 27, 28, 32, 33, 35, 36, 38, 44, 45, 48, 49, 50, 51, 52, 58, 60, 63, 64, 65, 68, 69, 72, 74, 75, 76, 77, 84, 86, 90, 92, 93, 95, 96, 98, 99, 100, 106, 108, 110, 112, 116, 117, 119, 120, 121, 122, 123, 124, 125, 126, 132, 140, 141, 142, 143, 144, 145, 147, 148, 150, 153, 156
OFFSET
1,2
COMMENTS
Numbers k such that A353354(k) [= Sum_{d|k} A332823(d)] is zero.
If k is present, then A003961(k), A348717(k) and (for all m >= 1) k*m^3 are present also.
Includes all numbers whose number of divisors is a multiple of 3 (A059269). Each number in A059269 has its divisors equally distributed between the classes defined by A332823; and they are exactly the numbers, m, for which A353354(m) = A353446(m) = 0.
PROG
(PARI)
A332823(n) = { my(f = factor(n), u=(sum(k=1, #f~, f[k, 2]*2^primepi(f[k, 1]))/2)%3); if(2==u, -1, u); };
A353354(n) = sumdiv(n, d, A332823(d));
isA353355(n) = (0==A353354(n));
CROSSREFS
Positions of 0's in A353354.
Union of A059269 and A332820.
A353356, A353357 and this sequence partition the natural numbers to three disjoint sets, based on the values obtained by A353354.
Cf. A000578, A001248, A059269 (subsequences).
Sequence in context: A259315 A211771 A211772 * A231573 A327204 A047409
KEYWORD
nonn
AUTHOR
Antti Karttunen and Peter Munn, Apr 15 2022
STATUS
approved