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.

A124941 Numbers k such that k and k+4 are 4-almost primes.

Original entry on oeis.org

36, 56, 84, 100, 132, 136, 152, 228, 340, 344, 372, 376, 472, 484, 488, 532, 546, 564, 568, 580, 621, 632, 686, 708, 770, 804, 808, 820, 846, 852, 856, 868, 872, 950, 1012, 1192, 1204, 1206, 1208, 1274, 1304, 1326, 1336, 1444, 1524, 1550, 1572, 1576, 1690
Offset: 1

Views

Author

Zak Seidov, Nov 13 2006

Keywords

Examples

			36=2^2*3^2, 40=2^3*5; 56=2^3*7, 60=2^2*3*5.
		

Crossrefs

Programs

  • Mathematica
    Select[Range[1690], PrimeOmega[#]==PrimeOmega[#+4]==4 &] (* James C. McMahon, Dec 07 2024 *)
  • PARI
    isok(n) = (bigomega(n) == 4) && (bigomega(n+4) == 4); \\ Michel Marcus, Oct 11 2013