OFFSET
1,1
LINKS
Robert Israel, Table of n, a(n) for n = 1..10000
EXAMPLE
a(3) = 434137 is a term because it is the concatenation in reverse order of the three consecutive primes 37, 41 and 43, and 434137 = 11 * 61 * 647 is the product of three primes.
MAPLE
cat3:= proc(a, b, c)
(a*10^(1+ilog10(b))+b)*10^(1+ilog10(c))+c
end proc:
select(t -> numtheory:-bigomega(t) = 3, [seq(cat3(ithprime(i+2), ithprime(i+1), ithprime(i)), i=1..100)]);
MATHEMATICA
p3[p_]:=FromDigits[Join[IntegerDigits[Prime[p+2]], IntegerDigits[Prime[p+1]], IntegerDigits[Prime[p]]]]; Select[Array[p3, 100], PrimeOmega[#]==3&] (* James C. McMahon, Jun 09 2025 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Will Gosnell and Robert Israel, Jun 05 2025
STATUS
approved
