login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A324796 Irregular triangle read by rows: row n gives numerators of fractions in the Farey subsequence B(m). 2

%I #19 Jun 25 2022 09:38:33

%S 0,1,1,0,1,1,2,1,0,1,1,2,1,3,2,3,1,0,1,1,1,2,3,1,4,3,2,3,4,1,0,1,1,1,

%T 2,1,3,2,3,4,1,5,4,3,5,2,5,3,4,5,1,0,1,1,1,1,2,1,3,2,3,4,5,1,6,5,4,3,

%U 5,2,5,3,4,5,6,1,0,1,1,1,1,2,1,2,3,1,4,3,2,5,3,4,5,6,1,7,6,5,4,7,3,5,7,2,7,5,3,7,4,5,6,7,1

%N Irregular triangle read by rows: row n gives numerators of fractions in the Farey subsequence B(m).

%C B(n) is denoted by F(B(2n),n) in Matveev (2017) - see definition on page 1. B(n) consists of the terms h/k of the Farey series F_{2n} such that k-n <= h <= n.

%C A049691 gives the row lengths.

%D A. O. Matveev, Farey Sequences, De Gruyter, 2017.

%H A. O. Matveev, <a href="https://github.com/andreyomatveev/farey-sequences">Farey Sequences: Errata + Haskell code</a>

%e The first few sequences B(1), B(2), B(3), B(4) are:

%e [0, 1/2, 1],

%e [0, 1/3, 1/2, 2/3, 1],

%e [0, 1/4, 1/3, 2/5, 1/2, 3/5, 2/3, 3/4, 1],

%e [0, 1/5, 1/4, 1/3, 2/5, 3/7, 1/2, 4/7, 3/5, 2/3, 3/4, 4/5, 1], [0, 1/6, 1/5, 1/4, 2/7, 1/3, 3/8, 2/5, 3/7, 4/9, 1/2, 5/9, 4/7, 3/5, 5/8, 2/3, 5/7, 3/4, 4/5, 5/6, 1],

%e ...

%p Farey := proc(n) sort(convert(`union`({0}, {seq(seq(m/k, m=1..k), k=1..n)}), list)) end:

%p B := proc(m) local a,i,h,k; global Farey; a:=[];

%p for i in Farey(2*m) do

%p h:=numer(i); k:=denom(i);

%p if (h <= m) and (k-m <= h) then a:=[op(a),i]; fi; od: a; end;

%Y Cf. A006842/A006843, A049691, A324797 (denominators).

%K nonn,frac,tabf

%O 1,7

%A _N. J. A. Sloane_, Sep 10 2019

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)