A124940 Numbers k such that k and k+3 are 3-almost primes.
27, 42, 63, 75, 99, 102, 114, 171, 172, 242, 255, 258, 279, 282, 322, 354, 363, 366, 385, 399, 423, 425, 426, 435, 452, 474, 531, 575, 595, 602, 603, 606, 615, 639, 642, 651, 654, 665, 722, 759, 772, 830, 844, 894, 903, 906, 932, 935, 978
Offset: 1
Keywords
Examples
27=3*3*3, 30=2*3*5; 42=2*3*7, 45=3*3*5.
Links
- Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
Programs
-
Mathematica
Select[Range[1000], PrimeOmega[#]==PrimeOmega[#+3]==3 &] (* James C. McMahon, Dec 07 2024 *)
-
PARI
isok(n) = (bigomega(n) == 3) && (bigomega(n+3) == 3); \\ Michel Marcus, Oct 11 2013
Comments