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 A188550 #39 Feb 06 2016 12:10:49 %S A188550 1,1,2,1,2,2,3,2,2,1,4,3,2,3,4,2,3,4,4,3,2,3,6,4,4,3,4,3,4,4,5,4,4,3, %T A188550 6,6,3,3,6,3,4,4,4,5,4,4,8,5,6,3,4,4,4,6,6,4,4,1,8,6,4,6,6,3,5,4,4,3, %U A188550 4,3,9,8,6,5,6,3,4,4,8,5,6,5,8,6,4,3,6,6,6,8,6,6,4,3,10,6,8,5,6,4,6,6,6,7,4,3,8,9,4,4,8,5,6,6,4,5,4 %N A188550 Maximal number of divisors d>1 of n-k such that n-d is a multiple of k, when k runs through values 2, 3, ..., floor(sqrt(n)). %C A188550 Conjecture: if the definition is changed so that k runs through values 2, 3, ..., floor((n-2)/2) then, beginning with n=6, the sequence remains without changes. - _Vladimir Shevelev_, Apr 10 2011 %C A188550 From _Vladimir Shevelev_, Jan 21 2013: (Start) %C A188550 Other conjectures: %C A188550 1) Primes 5, 7, 13 are only primes p for which a(p) = 1; %C A188550 2) Primes 11 and 19 are only primes p for which a(p) = 2; %C A188550 3) Let n = m^2 and m be the least value of k for which the number of divisors d > 1 of n-k, such that k|(n-d), equals a(n). Then m is prime or even power of a prime. (End) %H A188550 Alois P. Heinz, <a href="/A188550/b188550.txt">Table of n, a(n) for n = 4..10004</a> %F A188550 lim sup_{n -> infinity} a(n) = infinity. Indeed, it is easy to show that a(2^(2^n+1)) >= 2^n. Moreover, for n>5, we have a(2^(2^n+1)) > 2^n. - _Vladimir Shevelev_, Apr 09 2011 %p A188550 with(numtheory): %p A188550 a:= n-> max(seq(nops(select(x-> irem(x, k)=0, %p A188550 [seq(n-d, d=divisors(n-k) minus{1})])), k=2..floor(sqrt(n)))): %p A188550 seq(a(n), n=4..120); # _Alois P. Heinz_, Apr 04 2011 %t A188550 a[n_] := Max @ Table[ Length @ Select[Table[n-d, {d, Divisors[n-k] // Rest} ], Mod[#, k] == 0&], {k, 2, Floor[Sqrt[n]]}]; Table[a[n], {n, 4, 120}] (* _Jean-François Alcover_, Feb 06 2016, after _Alois P. Heinz_ *) %Y A188550 Cf. A000005, A188579, A188586, A188591, A188592. %K A188550 nonn %O A188550 4,3 %A A188550 _Vladimir Shevelev_, Apr 04 2011