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 A044954 #7 Mar 08 2015 14:56:50 %S A044954 1,2,3,4,6,12,18,24,25,26,30,31,32,33,34,36,37,41,43,46,49,50,52,56, %T A044954 57,60,61,62,63,64,67,68,72,74,75,78,81,83,87,88,90,91,92,93,94,98,99, %U A044954 100,104,106,109,112,114,118,119,120,121,122,123 %N A044954 Numbers with no two equally numerous base 5 digits. %t A044954 nten5Q[n_]:=Module[{c=Select[DigitCount[n,5],#>0&]},Length[c] == Length[ Union[ c]]]; Select[Range[150],nten5Q] (* _Harvey P. Dale_, Mar 08 2015 *) %K A044954 nonn,base %O A044954 1,2 %A A044954 _Clark Kimberling_