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!)
A085962 Numerators of Farey fractions with prime numerators and denominators. 0

%I #3 Oct 01 2013 17:57:41

%S 2,2,3,2,2,2,3,3,2,5,2,3,2,2,3,5,3,7,2,5,2,2,3,3,2,5,2,3,5,7,3,7,2,5,

%T 11,2,2,3,2,3,3,2,5,5,2,7,3,5,7,3,7,11,2,5,13,11,2,2,2,3,3,2,3,5,3,2,

%U 5,7,5,2,7,3,5,7,11,3,7,11,2,13,5,13,11,17,2,2,2,3,2,3,3,2,5,3,5,3,2,5,7,7,5

%N Numerators of Farey fractions with prime numerators and denominators.

%o (PARI) \ Farey sequence of order n fareyct(n) = { forprime(x=2,n, y = farey(x); \ print1(y","); ) } farey(n) = { c=0; m=n*(n-2)+2; a=vector(m); forprime(x=1,n, forprime(y=x,n, v = x/y; if(v<1, c++; a[c]=v; ) ) ); a = vecsort(a); c=0; for(x=2,m, if(a[x]<>a[x-1] & a[x]<>0, print1(numerator(a[x])","); c++; ) ); return(c) }

%Y Cf. A085693.

%K easy,nonn,frac

%O 3,1

%A _Cino Hilliard_, Aug 17 2003

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 19 19:02 EDT 2024. Contains 371798 sequences. (Running on oeis4.)