A218558 Next number that is the product of exactly three (not necessarily distinct) primes, after 10*n.
8, 12, 27, 42, 42, 52, 63, 75, 92, 92, 102, 114, 124, 138, 147, 153, 164, 171, 182, 195, 207, 212, 222, 231, 242, 255, 261, 273, 282, 292, 310, 316, 322, 332, 343, 354, 363, 374, 385, 399, 402, 412, 423, 434, 442, 452, 465, 474, 483, 494, 506
Offset: 1
Examples
a(0) = 8, the first number that is the product of exactly three (not necessarily distinct) primes. a(1) = 12 = 2^2 * 3, which is >10*1=10. a(3) = 42 even though 30 = 2*3*5 is a "triprime" because we use ">" rather that ">=" in the definition.
Programs
-
PARI
a(n)=n*=10; while(bigomega(n++)!=3, ); n \\ Charles R Greathouse IV, Aug 30 2017
Extensions
Offset corrected by Charles R Greathouse IV, Aug 30 2017
Comments