The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A278052 Let v = list of denominators of Farey series of order n (see A006843); let b(n) = Sum k*k'/(k+k'), where (k,k') are pairs of successive terms of v; a(n) = numerator of b(n). 2
1, 4, 39, 52, 4069, 8573, 258017, 46639, 53371999, 113518551, 768140741, 1560819091, 242830653007, 169134016817, 38186305937387, 408881289764107, 143220706672837, 41293923006131, 9928250098118791, 10936700271572951, 97615258031147892517, 643700119549549507, 62211198375587838727 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
J. Lehner and M. Newman, Sums involving Farey fractions, Acta Arithmetica 15.2 (1969): 181-187. See Eq. (21).
EXAMPLE
The fractions b(n) are 1/2, 4/3, 39/10, 52/7, 4069/252, 8573/396, 258017/6435, 46639/858, 53371999/680680, 113518551/1175720, 768140741/5290740, 1560819091/9360540, 242830653007/1029659400, 169134016817/617795640, 38186305937387/116454478140, ...
MAPLE
Farey := proc(n) sort(convert(`union`({0}, {seq(seq(m/k, m=1..k), k=1..n)}), list)) end:
ans:=[];
for n from 1 to 30 do
t1:=denom(Farey(n));
t2:=add( t1[i]*t1[i+1]/(t1[i]+t1[i+1]), i=1..nops(t1)-1);
od:
ans;
map(numer, ans); # A278052
map(denom, ans); # A278561
CROSSREFS
Cf. A006843, A005728, A240877, A278046-A278051, A278561 (denominators).
Sequence in context: A286877 A018860 A016484 * A093850 A297736 A286359
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Nov 23 2016
STATUS
approved

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 May 21 10:20 EDT 2024. Contains 372735 sequences. (Running on oeis4.)