|
|
A225375
|
|
Odd numbers with exactly 2 distinct prime factors.
|
|
4
|
|
|
15, 21, 33, 35, 39, 45, 51, 55, 57, 63, 65, 69, 75, 77, 85, 87, 91, 93, 95, 99, 111, 115, 117, 119, 123, 129, 133, 135, 141, 143, 145, 147, 153, 155, 159, 161, 171, 175, 177, 183, 185, 187, 189, 201, 203, 205, 207, 209, 213, 215, 217, 219, 221, 225, 235, 237
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
OFFSET
|
1,1
|
|
COMMENTS
|
Numbers of the form p^i*q^j where p, q are distinct odd primes and i>=1, j>=1.
Subset of A098905 (which contains in addition A046390 and numbers like 255255, 285285, 345345, 373065 etc.).
|
|
LINKS
|
|
|
MAPLE
|
isA225375 := proc(n) RETURN( (n mod 2 = 1) and (A001221(n) = 2) ); end proc:
for n from 1 to 840 do if isA225375(n) then printf("%d, ", n) ; end if; end do:
|
|
MATHEMATICA
|
|
|
PROG
|
|
|
CROSSREFS
|
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
|
|
EXTENSIONS
|
|
|
STATUS
|
approved
|
|
|
|