[go: up one dir, main page]

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”).

A091193
Smallest number having n abundant divisors.
4
1, 12, 24, 36, 60, 72, 168, 120, 180, 288, 240, 432, 504, 360, 864, 1296, 960, 840, 720, 1080, 3456, 1800, 2016, 1440, 1680, 3024, 2160, 3780, 2880, 2520, 5280, 3360, 6048, 4320, 6480, 22440, 11340, 7200, 6720, 7920, 5040, 10800, 7560, 12960, 18900, 13440
OFFSET
0,2
COMMENTS
A080224(a(n))=n and A080224(m)<>n for m<a(n).
LINKS
Eric Weisstein's World of Mathematics, Abundant Number.
MATHEMATICA
numd[n_] := Length@Select[Divisors[n], DivisorSigma[1, #] > 2 # &]; m = 100; s =
Table[0, {m}]; n = 1; c = 0; While[c < m, k = numd[n]; If[k > 0 && k <= m && s[[k]] == 0, s[[k]] = n; c++]; n++]; s (* Amiram Eldar, Jun 24 2019 *)
CROSSREFS
Cf. A080224.
Sequence in context: A117304 A022759 A335540 * A335541 A174018 A098242
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Dec 27 2003
EXTENSIONS
More terms from Reinhard Zumkeller, Dec 12 2009
STATUS
approved