OFFSET
1,1
EXAMPLE
70 is in the sequence because the prime divisors of 70 are {2,5,7} and 257 is prime.
MAPLE
read("transforms") ;
isA209799 := proc(n)
local pdivs ;
if isprime(n) or n < 4 then
return false;
end if;
pdivs := sort(convert(numtheory[factorset](n), list)) ;
isprime(digcatL(pdivs)) ;
end proc:
for n from 4 to 200 do
if isA209799(n) then printf("%d, ", n) ;
end if;
end do: # R. J. Mathar, Mar 19 2012
MATHEMATICA
Select[Range[200], CompositeQ[#]&&PrimeQ[FromDigits[Flatten[ IntegerDigits/@ FactorInteger[#] [[;; , 1]]]]]&] (* Harvey P. Dale, Apr 10 2023 *)
CROSSREFS
KEYWORD
nonn,base,less
AUTHOR
Michel Lagneau, Mar 13 2012
STATUS
approved