The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A107077 Odd-digit products of three odd-digit primes p*q*r. 1
75, 99, 117, 153, 171, 175, 195, 333, 357, 399, 531, 539, 555, 595, 711, 715, 775, 777, 795, 931, 935, 1113, 1179, 1331, 1359, 1519, 1533, 1557, 1573, 1719, 1737, 1773, 1775, 1791, 1975, 3171, 3177, 3179, 3357, 3395, 3515, 3553, 3573, 3577, 3751, 3757, 3759 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Odd-digit primes p,q,r are not necessarily all different, e.g. 75=3*5*5, 99=3*3*11, 1533=3*7*73, etc. Cf. A107076: Odd-digit semiprimes divisors of which are odd-digit primes.
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
With[{odps=Select[Prime[Range[100]], And@@OddQ[IntegerDigits[#]]&]}, Union[Select[Times@@@Tuples[odps, 3], And@@OddQ[IntegerDigits[#]]&]]] (* Harvey P. Dale, Feb 02 2012 *)
PROG
(PARI) D=[0, 2, 4, 6, 8];
oddDigits(n)=#setintersect(Set(digits(n)), D)==0
list(lim)=my(v=List(), P=v, L=lim\3, pq, t); forprime(p=3, L\3, if(oddDigits(p), listput(P, p))); P=Vec(P); for(i=1, #P, for(j=1, i, pq=P[i]*P[j]; if(pq>L, break); for(k=1, j, t=pq*P[k]; if(t>lim, break); if(oddDigits(t), listput(v, t))))); P=0; Set(v) \\ Charles R Greathouse IV, Feb 15 2017
CROSSREFS
Cf. A107076.
Sequence in context: A247272 A272023 A286353 * A039485 A226475 A337251
KEYWORD
nonn,base
AUTHOR
Zak Seidov, May 10 2005
EXTENSIONS
Corrected and extended by Harvey P. Dale, Feb 02 2012
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 May 13 14:08 EDT 2024. Contains 372519 sequences. (Running on oeis4.)