|
| |
|
|
A080683
|
|
23-smooth numbers: i.e. numbers whose prime divisors are all <= 23.
|
|
12
|
|
|
|
1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 32, 33, 34, 35, 36, 38, 39, 40, 42, 44, 45, 46, 48, 49, 50, 51, 52, 54, 55, 56, 57, 60, 63, 64, 65, 66, 68, 69, 70, 72, 75, 76, 77, 78, 80, 81, 84, 85, 88, 90, 91, 92, 95
(list;
graph;
refs;
listen;
history;
text;
internal format)
|
|
|
|
OFFSET
|
1,2
|
|
|
COMMENTS
|
Coincides for the first 111 terms with A174228 (divisors of 24!). [Bruno Berselli, Sep 24 2012]
|
|
|
LINKS
|
William A. Tedeschi, Table of n, a(n) for n=1..10000
|
|
|
PROG
|
(PARI) test(n)= {m=n; forprime(p=2, 23, while(m%p==0, m=m/p)); return(m==1)} for(n=1, 100, if(test(n), print1(n", ")))
(MAGMA) [n: n in [1..100] | PrimeDivisors(n) subset PrimesUpTo(23)]; // Bruno Berselli, Sep 24 2012
|
|
|
CROSSREFS
|
For p-smooth numbers with other values of p, see A003586, A051037, A002473, A051038, A080197, A080681, A080682.
Sequence in context: A160546 A087143 * A174228 A197640 A124231 A154470
Adjacent sequences: A080680 A080681 A080682 * A080684 A080685 A080686
|
|
|
KEYWORD
|
easy,nonn
|
|
|
AUTHOR
|
Cino Hilliard (hillcino368(AT)gmail.com), Mar 02 2003
|
|
|
STATUS
|
approved
|
| |
|
|