OFFSET
1,1
COMMENTS
Conjecture: almost all terms (asymptotic density 1) end with 9 and have either 3k+1 or 3k+2 occurrences of the digit 4 for some nonnegative k. (Otherwise they'd be divisible by 2 or 3 and these semiprimes would be expected to be rare; the sequence is too thin to prove this directly.) - Charles R Greathouse IV, Nov 12 2021
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 1..600
EXAMPLE
4 = 2^2
6 = 2 * 3
9 = 3^2
46 = 2 * 23
49 = 7^2
69 = 3 * 23
94 = 2 * 47
MATHEMATICA
fQ[n_] := Plus @@ Last /@ FactorInteger[n] == 2 && Union[ Join[{4, 6, 9}, IntegerDigits[n]]] == {4, 6, 9}; Select[ Range[ 47000], fQ[ # ] &] (* Robert G. Wilson v, May 27 2005 *)
Flatten[Table[Select[FromDigits/@Tuples[{4, 6, 9}, n], PrimeOmega[#]==2&], {n, 5}]] (* Harvey P. Dale, Jun 14 2015 *)
PROG
(PARI) is(n)=bigomega(n)==2 && #setminus(Set(digits(n)), [4, 6, 9])==0 \\ Charles R Greathouse IV, Nov 12 2021
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Jonathan Vos Post, May 22 2005
EXTENSIONS
More terms from Robert G. Wilson v, May 27 2005
STATUS
approved