OFFSET
1,1
COMMENTS
Odd numbers k for which A155085(k) is a multiple of 3.
LINKS
EXAMPLE
7 is present as 7 mod 3 = +1, while sigma(7) = 8, and 8 mod 3 = 2, i.e., -1.
45 is present as 45 mod 3 = 0, while sigma(45) = 78, and 78 mod 3 = 0 as well.
MATHEMATICA
Select[Range[1, 360, 2], Divisible[DivisorSigma[1, #] + #, 3] &] (* Amiram Eldar, Dec 01 2021 *)
PROG
(PARI) isA349751(n) = ((n%2)&&0==(sigma(n)+n)%3);
CROSSREFS
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 30 2021
STATUS
approved