OFFSET
1,1
COMMENTS
From total 10!/(2!*3!*4!)=12600 ten-digit numbers with exactly one 1, two 2's, three 3's and four 4's, exactly 732 numbers are semiprimes of the form 3*prime.
LINKS
Zak Seidov, Table of n, a(n) for n = 1..732
MATHEMATICA
Select[(FromDigits[#] & /@ Permutations[{1, 2, 2, 3, 3, 3, 4, 4, 4, 4}]), PrimeQ[#/3] &]
PROG
(PARI) forprime(p=407814811, 1481443741, d=digits(3*p); if(vecsort(d)==[1, 2, 2, 3, 3, 3, 4, 4, 4, 4], print1(3*p", "))) \\ Charles R Greathouse IV, Sep 24 2015
CROSSREFS
KEYWORD
nonn,base,fini,full
AUTHOR
Zak Seidov, Oct 07 2015
STATUS
approved