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

A124941
Numbers k such that k and k+4 are 4-almost primes.
5
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,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
36=2^2*3^2, 40=2^3*5; 56=2^3*7, 60=2^2*3*5.
MATHEMATICA
Select[Range[1690], PrimeOmega[#]==PrimeOmega[#+4]==4 &] (* James C. McMahon, Dec 07 2024 *)
PROG
(PARI) isok(n) = (bigomega(n) == 4) && (bigomega(n+4) == 4); \\ Michel Marcus, Oct 11 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 13 2006
STATUS
approved