OFFSET
1,1
COMMENTS
Numbers k such that k^3 - 1 and k^3 + 1 each have 3 prime factors, counted with multiplicity.
All terms are divisible by 6.
The Generalized Bunyakovsky Conjecture implies there are infinitely many j such that 6+7*j, 32 + 35*j, 1225 * j^2 + 2205 * j + 993 and 175 * j^2 + 305 * j + 133 are all prime. For such j, 31 + 35*j is a term of the sequence. Thus the conjecture implies the sequence is infinite. The first two such j are 1 and 31, corresponding to a(1) = 66 and a(20) = 1116.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 180 is a term because 180^3 - 1 = 5831999 = 31 * 179 * 1051 and 5832001 = 7 * 181 * 4603 are each products of 3 primes.
MAPLE
filter:= k -> numtheory:-bigomega(k-1) + numtheory:-bigomega(k^2 + k + 1) = 3 and
numtheory:-bigomega(k+1) + numtheory:-bigomega(k^2 - k + 1) = 3:
select(filter, [seq(i, i=6 .. 10000, 6)]);
MATHEMATICA
Select[Range[7500], PrimeOmega[#^3 - 1] == PrimeOmega[#^3 + 1] == 3 &] (* Amiram Eldar, Aug 10 2025 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Robert Israel, Aug 09 2025
STATUS
approved
