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!)
A245382 Primes whose product of digits is a semiprime. 1
19, 23, 37, 41, 53, 61, 73, 127, 137, 157, 173, 191, 251, 271, 313, 317, 331, 521, 571, 751, 911, 1123, 1153, 1213, 1217, 1231, 1321, 1531, 1571, 1721, 2113, 2131, 2311, 2711, 3121, 3511, 4111, 5113, 5171, 5711, 7121, 7151, 7211, 11119, 11161, 11173, 11177, 11213 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The linked table includes probable primes. - Jens Kruse Andersen, Jul 21 2014
LINKS
K. D. Bajpai and Jens Kruse Andersen, Table of n, a(n) for n = 1..10000 (first 370 terms from K. D. Bajpai)
EXAMPLE
137 is prime. 1 * 3 * 7 = 21 = 3 * 7, which is semiprime.
251 is prime. 2 * 5 * 1 = 10 = 2 * 5, which is semiprime.
MATHEMATICA
Select[Prime[Range[1000]], 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 && isprime(n), print1(n", ")))
for(d=1, 8, f(0, 0, d)) \\ f(0, 0, d) prints d-digit terms. Jens Kruse Andersen, Jul 21 2014
CROSSREFS
Sequence in context: A245585 A343741 A060269 * A075585 A052030 A045297
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 April 19 17:39 EDT 2024. Contains 371797 sequences. (Running on oeis4.)