OFFSET
1,1
COMMENTS
There are three cases:
k=3.
k, k+4 and k+6 are primes while k+2 is 3 times a prime.
k, k+2 and k+6 are primes while k+4 is 3 times a prime.
All terms > 13 have final digit 7.
The first n for which a(n+1)-a(n)=10 is 7538. - Robert Israel, Oct 19 2019
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3)=7 is in the sequence because 7*9*11*13 is the product of exactly 5 primes: 3*3*7*11*13.
MAPLE
A1:= select(t -> isprime((t+2)/3) and isprime(t) and isprime(t+4) and isprime(t+6), {seq(i, i=7..100000, 30)}):
A2:= select(t -> isprime((t+4)/3) and isprime(t) and isprime(t+2) and isprime(t+6), {seq(i, i=17..100000, 30)});
sort(convert({3, 5, 11, 13} union A1 union A2, list));
CROSSREFS
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Oct 16 2019
STATUS
approved