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

A099476
Smallest number having exactly n divisors d such that also d+2 is a divisor.
2
1, 3, 15, 12, 24, 60, 180, 120, 360, 720, 1260, 840, 1680, 3360, 2520, 7560, 5040, 10080, 30240, 32760, 27720, 85680, 83160, 55440, 110880, 166320, 277200, 526680, 360360, 831600, 942480, 1053360, 1801800, 720720, 3769920, 1441440, 2162160
OFFSET
0,2
LINKS
FORMULA
A099475(a(n)) = n and A099475(m) <> n for m < a(n).
MATHEMATICA
f[n_] := DivisorSum[n, Boole@Divisible[n, #+2] &]; m = 20; a = Table[0, {m}]; c = 0; n = 2; While[c < m, f1 = f[n]; If[f1 > 0 && f1 <= m && a[[f1]] == 0, c++; a[[f1]] = n]; n++]; Join[{1}, a] (* Amiram Eldar, Sep 02 2019 *)
CROSSREFS
Sequence in context: A297897 A232076 A329770 * A063628 A280201 A378847
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Oct 18 2004
STATUS
approved