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 A277676 #14 Jun 29 2019 01:40:15 %S A277676 2,4,5,6,8,9,10,12,13,14,16,17,18,20,21,22,23,25,26,27,29,30,31,32,34, %T A277676 35,36,37,39,40,41,42,44,45,46,47,49,50,51,52,53,55,56,57,58,60,61,62, %U A277676 63,65,66,67,68,69,71,72,73,74,76,77,78,79,80,82,83,84 %N A277676 Numbers k such that d(k+2) > d(k+1), where d(m) is the number of digits in the base-m representation of m!. %C A277676 It has been checked for k = 2..50000 that if d(k+1) > d(k), then d(k+1) = d(k) + 1. %H A277676 Clark Kimberling, <a href="/A277676/b277676.txt">Table of n, a(n) for n = 1..1000</a> %F A277676 (See A277674.) %t A277676 d = Differences@Array[Floor@Log[#, #!] &, 10000, 2]; (* _Robert G. Wilson v_, Oct 27 2016 *) %t A277676 u = Flatten[Position[d, 0]]; (* A277675 *) %t A277676 v = Flatten[Position[d, 1]]; (* A277676 *) %o A277676 (PARI) d(n) = #digits(n!, n); %o A277676 isok(n) = d(n+2) > d(n+1); \\ _Michel Marcus_, Oct 29 2016 %Y A277676 Cf. A000142, A060151, A277674, A277675. %K A277676 nonn,base,easy %O A277676 1,1 %A A277676 _Clark Kimberling_, Oct 26 2016