|
Search: id:A002473
|
|
|
| A002473 |
|
Highly composite numbers (2): numbers whose prime divisors are all <= 7. (Formerly M0477 N0177)
|
|
+0 70
|
|
| 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 18, 20, 21, 24, 25, 27, 28, 30, 32, 35, 36, 40, 42, 45, 48, 49, 50, 54, 56, 60, 63, 64, 70, 72, 75, 80, 81, 84, 90, 96, 98, 100, 105, 108, 112, 120, 125, 126, 128, 135, 140, 144, 147, 150, 160, 162, 168, 175, 180, 189, 192
(list; graph; listen)
|
|
|
OFFSET
|
1,2
|
|
|
COMMENT
|
Also called 7-smooth numbers or humble numbers.
Successive numbers k such EulerPhi[210 k] = 48 k. [From Artur Jasinski (grafix(AT)csl.pl), Nov 05 2008]
The divisors of 10! (cf. A161466) are a finite subsequence. [From Reinhard Zumkeller (reinhard.zumkeller(AT)gmail.com), Jun 10 2009]
|
|
REFERENCES
|
B. C. Berndt, Ramanujan's Notebooks Part IV, Springer-Verlag, see p. 52.
N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
|
|
LINKS
|
N. J. A. Sloane, Table of n, a(n) for n=1..5841 [All terms <2*10^9.]
University of Ulm, The first 5842 terms
Eric Weisstein's World of Mathematics, Link to a section of The World of Mathematics.
|
|
MATHEMATICA
|
Select[Range[250], Max[Transpose[FactorInteger[ # ]][[1]]]<=7&]
aa = {}; Do[If[EulerPhi[210 n] == 48 n, AppendTo[aa, n]], {n, 1, 1200}]; aa [From Artur Jasinski (grafix(AT)csl.pl), Nov 05 2008]
|
|
PROGRAM
|
(PARI) test(n)= {m=n; forprime(p=2, 7, while(m%p==0, m=m/p)); return(m==1)} for(n=1, 200, if(test(n), print1(n", ")))
|
|
CROSSREFS
|
Cf. A002182, A067374. Complement of A068191. Not the same as A063938. For p-smooth numbers with other values of p, see A003586, A051037, A051038, A080197, A080681, A080682, A080683.
Sequence in context: A056757 A079333 A063938 this_sequence A161466 A117296 A096503
Adjacent sequences: A002470 A002471 A002472 this_sequence A002474 A002475 A002476
|
|
KEYWORD
|
nonn,easy,nice
|
|
AUTHOR
|
N. J. A. Sloane (njas(AT)research.att.com).
|
|
EXTENSIONS
|
More terms from James A. Sellers (sellersj(AT)math.psu.edu), Dec 23 1999
Additional comments from Michel Lecomte, Jun 09 2007
|
|
|
Search completed in 0.002 seconds
|