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

 

Logo

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 60th year, we have over 367,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Other ways to Give
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A245383 Numbers n whose product of decimal digits is a semiprime. 1
4, 6, 9, 14, 16, 19, 22, 23, 25, 27, 32, 33, 35, 37, 41, 52, 53, 55, 57, 61, 72, 73, 75, 77, 91, 114, 116, 119, 122, 123, 125, 127, 132, 133, 135, 137, 141, 152, 153, 155, 157, 161, 172, 173, 175, 177, 191, 212, 213, 215, 217, 221, 231, 251, 271, 312, 313, 315 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
n either has one digit 4, 6 or 9 or two digits in {2,3,5,7}, all other digits being 1. - Robert Israel, Jul 20 2014
LINKS
EXAMPLE
217 is in the sequence because 2 * 1 * 7 = 14 = 2 * 7 which is a semiprime.
312 is in the sequence because 3 * 1 * 2 = 6 = 2 * 3 which is a semiprime.
MAPLE
dmax:= 4: # to get all terms with up to d digits
A:= NULL:
for d from 1 to dmax do
for j from 1 to d do
for xj in [4, 6, 9] do
A:= A, (10^d-1)/9 + (xj-1)*10^(j-1);
od od:
for ij in combinat[choose](d, 2) do
for xi in [2, 3, 5, 7] do
for xj in [2, 3, 5, 7] do
A:= A, (10^d-1)/9 + (xi-1)*10^(ij[1]-1) + (xj-1)*10^(ij[2]-1);
od od od:
od:
{A}; # Robert Israel, Jul 20 2014
MATHEMATICA
Select[Range[500], PrimeOmega[(Times @@ IntegerDigits[#])] == 2 &]
PROG
(PARI) f(n, b, d) = if(d, for(i=1, 9, if(b+bigomega(i)<=2, f(10*n+i, b+bigomega(i), d-1))), if(b==2, print1(n", ")))
for(d=1, 4, f(0, 0, d)) \\ f(0, 0, d) prints d-digit terms. Jens Kruse Andersen, Jul 21 2014
CROSSREFS
Sequence in context: A108634 A135355 A350069 * A050940 A190434 A310671
KEYWORD
nonn,base
AUTHOR
K. D. Bajpai, Jul 20 2014
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 December 7 21:37 EST 2023. Contains 367662 sequences. (Running on oeis4.)