OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
EXAMPLE
8 is not here because 8=2*2*2=>2+2+2=6=2*3 (semiprime),
12 is not here because 12=2*2*3=>2+2+3=7 (prime),
18 is here because 18=2*3*3=>2+3+3=8=2*2*2 (3-almost prime),
20, 27, 28, 30, are not here,
42 is here because 42=2*3*7=>2+3+7=12=2*2*3 (3-almost prime).
PROG
(PARI) is(n)=my(f=factor(n)); sum(i=1, #f~, f[i, 2])==3 && bigomega(sum(i=1, #f~, f[i, 1]*f[i, 2]))==3 \\ Charles R Greathouse IV, Oct 11 2013
CROSSREFS
KEYWORD
nonn
AUTHOR
Zak Seidov, Nov 07 2006
STATUS
approved