A386915 Numbers k such that k^3 - 1 is a triprime.
4, 5, 15, 27, 32, 42, 44, 48, 50, 59, 60, 66, 72, 75, 78, 84, 98, 104, 108, 114, 119, 132, 140, 143, 147, 152, 162, 167, 174, 180, 182, 188, 200, 203, 206, 212, 215, 218, 224, 228, 234, 236, 240, 252, 258, 264, 266, 270, 279, 288, 290, 294, 308, 318, 336, 338, 342, 350, 374, 378, 383, 384, 390
Offset: 1
Keywords
Examples
a(3) = 15 is a term because 15^3 - 1 = 3374 = 2 * 7 * 241 is the product of three primes.
Links
- Robert Israel, Table of n, a(n) for n = 1..10000
Programs
-
Maple
select(t -> numtheory:-bigomega(t^3-1)=3, [$1..1000]);
-
Mathematica
Select[Range[400], PrimeOmega[#^3 - 1] == 3 &] (* Amiram Eldar, Aug 08 2025 *)
-
PARI
isok(k) = bigomega(k^3-1) == 3; \\ Michel Marcus, Aug 08 2025
Comments