login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Denominators of sequence of fractions of primes that minimize absolute value of difference between the fractions and 1/4.
1

%I #8 Mar 21 2016 06:21:06

%S 3,5,7,11,13,13,19,19,29,29,29,29,43,43,53,53,53,67,67,67,67,67,67,67,

%T 67,67,67,67,67,67,67,67,67,149,149,149,163,163,173,173,173,173,173,

%U 173,173,211,211,211,211,211,211,211,211,211,211,269,269,269,269

%N Denominators of sequence of fractions of primes that minimize absolute value of difference between the fractions and 1/4.

%C For n = 2, there are two primes available for use in numerator or denominator: 2,3. The best approximation to 1/4 is 2/3. Sequence begins at n = 2.

%e For n=2, there are two primes available to approximate 1/4. The closest fraction in absolute value is 2/3. The first few approximating fractions are: 2/3, 2/5, 2/7, 3/11, 3/13,...

%o (PARI) afr(n) = {kdiff = 1; fp = primes(n); for (i=1, n, num = fp[i]; for (j=1, n, den = fp[j]; diff = abs(num/den - 1/4); if (diff <= kdiff, kdiff = diff; knum = num; kden = den;););); return(knum/kden);}

%o a(n) = denominator(afr(n)); \\ _Michel Marcus_, Jun 12 2013 & Mar 21 2016

%Y Cf. A161555 (numerators).

%K nonn,frac

%O 1,1

%A _Daniel Tisdale_, Jun 13 2009

%E More terms from _Michel Marcus_, Jun 12 2013