login

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 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A052426
Numbers with no two-digit factors (including itself).
7
1, 2, 3, 4, 5, 6, 7, 8, 9, 101, 103, 107, 109, 113, 127, 131, 137, 139, 149, 151, 157, 163, 167, 173, 179, 181, 191, 193, 197, 199, 202, 206, 211, 214, 218, 223, 226, 227, 229, 233, 239, 241, 251, 254, 257, 262, 263, 269, 271, 274, 277, 278, 281, 283, 293, 298, 302, 303, 307, 309, 311, 313, 314
OFFSET
1,2
COMMENTS
Numbers of the form k*m where 1 <= k <= 9 and either m=1 or A020639(m) >= 100. - Robert Israel, Mar 11 2018
LINKS
MAPLE
lpf:= n -> min(numtheory:-factorset(n)):
filter:= proc(n) local k;
for k from 9 to 1 by -1 do
if n mod k = 0 then return(lpf(n/k) > 100) fi
od
end proc:
select(filter, [$1..1000]); # Robert Israel, Mar 11 2018
CROSSREFS
Cf. A020639.
Sequence in context: A347400 A056544 A082216 * A240237 A056142 A056525
KEYWORD
base,nonn
AUTHOR
Henry Bottomley, Mar 14 2000
EXTENSIONS
Missing terms 277, 281, 283, 293, 307, 311, 313 inserted by Robert Israel, Mar 11 2018
STATUS
approved