cp's OEIS Frontend

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.

A049807 a(n)=number of Farey fractions of order n that are <=1/3; cf. A049805.

This page as a plain text file.
%I A049807 #8 Nov 14 2012 10:12:29
%S A049807 1,1,2,3,4,5,7,8,10,12,15,16,20,22,25,28,33,35,41,43,47,51,58,61,68,
%T A049807 72,78,82,91,93,103,108,115,121,129,133,145,151,159,165,178,182,196,
%U A049807 202,210,218,233,238,252,258,269,277,294,300
%N A049807 a(n)=number of Farey fractions of order n that are <=1/3; cf. A049805.
%t A049807 Farey[n_] := Union[Flatten[Join[{0}, Table[a/b, {b, n}, {a, b}]]]]; f[n_] := Length@ Select[ Farey@ n, # <= 1/3 &]; Array[f, 54] (* _Robert G. Wilson v_, Nov 14 2012 *)
%Y A049807 Cf. A005728, A049806, A049808, A049809, A049810, A049811, A049812, A049813, A049814.
%K A049807 nonn
%O A049807 1,3
%A A049807 _Clark Kimberling_