OFFSET
1,1
COMMENTS
All terms are odd, because if k is even, at least one of k, k + 2, k + 4 and k + 6 is divisible by 8.
In the case of a(1) = 151401, k + 14, k + 16 and k + 18 are also triprimes.
In the case of a(143) = 2560187, k + 14, k + 16, k + 18 and k + 20 are also triprimes.
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(5) = 179535 is a term because
179535 = 3 * 5 * 11969
179535 + 2 = 179537 = 17 * 59 * 179
179535 + 4 = 179539 = 29 * 41 * 151
179535 + 6 = 179541 = 3 * 3 * 19949
179535 + 8 = 179543 = 7 * 13 * 1973
179535 + 10 = 179545 = 5 * 149 * 241
179535 + 12 = 179547 = 3 * 97 * 617
are all triprimes.
MAPLE
filter:= (t -> andmap(x -> numtheory:-bigomega(x)=3, [t, t+2, t+4, t+6, t+8,
t+10, t+12])):
select(filter, [seq(i, i=1 .. 10^6, 2)]);
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov and Robert Israel, Dec 31 2023
STATUS
approved
