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

A376843
Numbers k such that Omega(k + Omega(k)) = Omega(k) + Omega(Omega(k)), where Omega = A001222.
7
1, 2, 6, 10, 25, 26, 60, 74, 78, 115, 122, 123, 140, 145, 146, 147, 153, 156, 169, 186, 195, 205, 207, 220, 222, 231, 245, 253, 259, 273, 314, 323, 325, 341, 345, 348, 355, 361, 369, 386, 387, 427, 438, 453, 473, 481, 505, 507, 529, 536, 537, 553, 554, 555, 559, 561, 573, 582, 618, 620, 626, 635
OFFSET
1,2
COMMENTS
Includes semiprimes k such that k + 2 is a triprime.
LINKS
EXAMPLE
a(5) = 25 is a term because Omega(25) = 2, Omega(2) = 1 and Omega(25 + 2) = Omega(27) = 3 = 2 + 1.
MAPLE
filter:= proc(k) uses numtheory; local s;
s:= bigomega(k);
bigomega(k+s) = s + bigomega(s)
end proc:
select(filter, [$1..1000]);
KEYWORD
nonn
AUTHOR
Robert Israel, Oct 06 2024
STATUS
approved