login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A107342 Semiprimes with semiprime digits (digits 4, 6, 9 only). 16
4, 6, 9, 46, 49, 69, 94, 446, 466, 469, 649, 669, 694, 699, 949, 4449, 4469, 4499, 4666, 4694, 4699, 4946, 6499, 6646, 6649, 6694, 6999, 9446, 9449, 9466, 9469, 9946, 9969, 44494, 44669, 44949, 44966, 44969, 44999, 46469, 46666, 46946, 46969, 46994 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Numbers n such that all digits of n are elements of A001358 and n is an element of A001358.
Numbers n such that n is an element of A107665 and n is an element of A001358.
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
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
Intersection of A001358 and A107665.
Sequence in context: A107665 A085733 A242751 * A086698 A317248 A115666
KEYWORD
base,easy,nonn
AUTHOR
Jonathan Vos Post, May 22 2005
EXTENSIONS
More terms from Robert G. Wilson v, May 27 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 23 20:33 EDT 2024. Contains 371916 sequences. (Running on oeis4.)