This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A099476 #7 Sep 02 2019 04:28:06 %S A099476 1,3,15,12,24,60,180,120,360,720,1260,840,1680,3360,2520,7560,5040, %T A099476 10080,30240,32760,27720,85680,83160,55440,110880,166320,277200, %U A099476 526680,360360,831600,942480,1053360,1801800,720720,3769920,1441440,2162160 %N A099476 Smallest number having exactly n divisors d such that also d+2 is a divisor. %H A099476 Amiram Eldar, <a href="/A099476/b099476.txt">Table of n, a(n) for n = 0..87</a> %F A099476 A099475(a(n)) = n and A099475(m) <> n for m < a(n). %t A099476 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 *) %Y A099476 Cf. A059267, A099475. %K A099476 nonn %O A099476 0,2 %A A099476 _Reinhard Zumkeller_, Oct 18 2004