cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A376843 Numbers k such that Omega(k + Omega(k)) = Omega(k) + Omega(Omega(k)), where Omega = A001222.

Original entry on oeis.org

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

Views

Author

Robert Israel, Oct 06 2024

Keywords

Comments

Includes semiprimes k such that k + 2 is a triprime.

Examples

			a(5) = 25 is a term because Omega(25) = 2, Omega(2) = 1 and Omega(25 + 2) = Omega(27) = 3 = 2 + 1.
		

Crossrefs

Programs

  • Maple
    filter:= proc(k) uses numtheory; local s;
     s:= bigomega(k);
       bigomega(k+s) = s + bigomega(s)
    end proc:
    select(filter, [$1..1000]);