A002183 Number of divisors of n-th highly composite number.
1, 2, 3, 4, 6, 8, 9, 10, 12, 16, 18, 20, 24, 30, 32, 36, 40, 48, 60, 64, 72, 80, 84, 90, 96, 100, 108, 120, 128, 144, 160, 168, 180, 192, 200, 216, 224, 240, 256, 288, 320, 336, 360, 384, 400, 432, 448, 480, 504, 512, 576, 600, 640, 672, 720, 768, 800, 864, 896
Offset: 1
References
- S. Ramanujan, Collected Papers, Ed. G. H. Hardy et al., Cambridge 1927; Chelsea, NY, 1962, p. 87.
- 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
- Ray Chandler, Table of n, a(n) for n = 1..10000 (first 1000 terms from T. D. Noe)
- A. Flammenkamp, First 1200 highly composite numbers.
- Graeme McRae, Highly Composite Numbers.
- S. Ramanujan, Table of First 103 Highly Composite Numbers.
- N. J. A. Sloane, Transforms.
- Eric Weisstein's World of Mathematics, Highly Composite Number.
Crossrefs
Programs
-
Haskell
import Data.List (nub) a002183 n = a002183_list !! (n-1) a002183_list = nub $ map (a000005 . a061799) [1..] -- Reinhard Zumkeller, Apr 01 2011
-
Mathematica
Reap[ For[ record = 0; n = 1, n <= 10^9, n = If[n < 60, n+1, n+60], tau = DivisorSigma[0, n]; If[tau > record, record = tau; Print[tau]; Sow[tau]]]][[2, 1]] (* Jean-François Alcover, Aug 13 2013 *) DeleteDuplicates[DivisorSigma[0,Range[3*10^6]],GreaterEqual] (* The program generates the first 42 terms of the sequence. *) (* Harvey P. Dale, Aug 12 2025 *)
Formula
Extensions
More terms from Robert G. Wilson v, Jul 24 2002
Comments