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.

A175759 Numbers n such that bigomega( n+bigomega(n) ) = bigomega(n), where bigomega = A001222.

Original entry on oeis.org

1, 2, 4, 27, 33, 36, 42, 49, 55, 56, 63, 75, 84, 85, 91, 93, 99, 100, 102, 114, 119, 121, 132, 136, 141, 143, 152, 159, 171, 172, 183, 185, 201, 203, 213, 215, 217, 219, 228, 235, 242, 247, 255, 258, 265, 279, 282, 287, 289, 299, 301, 303, 319, 321, 322, 327, 339
Offset: 1

Views

Author

Michel Lagneau, Aug 28 2010

Keywords

Examples

			27 is in the sequence because bigomega(27) = 3 and bigomega(27 + 3) = bigomega(30) = 3.
		

Programs

  • Maple
    with(numtheory): a := proc (n) if bigomega(n+bigomega(n)) = bigomega(n) then n else end if end proc: seq(a(n), n = 1 .. 400);