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 A048485 #11 May 14 2018 12:23:06 %S A048485 0,0,0,0,0,0,1,1,1,0,1,1,0,0,0,0,2,2,3,3,3,0,3,1,1,0,1,1,0,0,4,3,3,3, %T A048485 2,1,0,0,0,0,2,2,1,1,3,0,0,0,1,1,5,3,4,4,3,5,0,0,8,1,7,8,2,11,1,4,4, %U A048485 10,3,6,11,7,7,6,6,5,4,4,7,3,2,2,5,1,0,0,0,3,2,2,1,1,0,0,0,1,0,0,3,3 %N A048485 a(n) = floor(n/2) - A048475(n). %H A048485 Giovanni Resta, <a href="/A048485/b048485.txt">Table of n, a(n) for n = 1..4000</a> %e A048485 If n=51 then the number of divisors of the central binomial coefficient binomial(51,25) is 4608, while the maximal number of divisors of binomial(51,k) is 6144, which appears first at k=24; thus the deviation a(51) = |25-24| = 1 is small. %t A048485 a[n_] := Block[{d = DivisorSigma[0, Binomial[n, Range[0, n/2]]]}, Floor[n/2] - Position[d, Max[d], 1, 1][[1, 1]] + 1]; Array[a, 100] (* _Giovanni Resta_, May 14 2018 *) %Y A048485 Cf. A000005, A001405, A034974, A048275. %K A048485 nonn,look %O A048485 1,17 %A A048485 _Labos Elemer_