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 A049813 #8 Nov 14 2012 10:11:43 %S A049813 1,1,1,1,1,1,1,1,2,3,4,5,6,7,8,9,10,11,13,14,16,17,19,20,22,23,25,27, %T A049813 30,31,34,36,38,40,43,44,48,50,53,55,59,60,64,66,69,72,77,79,84,86,90, %U A049813 93,98,100,105,108,112,115,121,122 %N A049813 a(n)=number of Farey fractions of order n that are <=1/9; cf. A049805. %t A049813 Farey[n_] := Union[Flatten[Join[{0}, Table[a/b, {b, n}, {a, b}]]]]; f[n_] := Length@ Select[ Farey@ n, # <= 1/9 &]; Array[f, 60] (* _Robert G. Wilson v_, Nov 14 2012 *) %Y A049813 Cf. A005728, A049806, A049807, A049808, A049809, A049810, A049811, A049812, A049814. %K A049813 nonn %O A049813 1,9 %A A049813 _Clark Kimberling_