Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #9 Jul 03 2024 20:06:52
%S 1,4,7,13,16,19,25,28,31,37,43,52,61,64,67,73,76,79,91,97,100,103,109,
%T 112,121,124,127,133,139,148,151,157,163,172,175,181,193,199,208,211,
%U 217,223,229,241,244,247,256,259,268,271,277,283,289,292,301,304,307,313,316,325,331,337,343,349,364,367,373,379
%N Nonmultiples of 3 whose sum of divisors is also a nonmultiple of 3.
%C Numbers k such that Ramanujan tau(k), A000594(k), is not a multiple of 3.
%C Not a multiplicative semigroup. For example, although 7 is included, 49 = 7*7 is not.
%H Antti Karttunen, <a href="/A374135/b374135.txt">Table of n, a(n) for n = 1..20000</a>
%H <a href="/index/Si#SIGMAN">Index entries for sequences related to sigma(n)</a>
%t Select[Range[380],Mod[#,3]!=0&&Mod[DivisorSigma[1,#],3]!=0 &] (* _Stefano Spezia_, Jul 03 2024 *)
%o (PARI)
%o A070563(n) = ((n%3) && (sigma(n)%3));
%o isA374135 = A070563;
%Y Intersection of A001651 and A329963.
%Y Cf. A000203, A000594, A070563 (characteristic function).
%K nonn
%O 1,2
%A _Antti Karttunen_, Jul 03 2024