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”).

A250744
Denominator of the harmonic mean of the first n positive Fibonacci numbers.
3
1, 1, 5, 17, 91, 379, 721, 35849, 614893, 6800951, 607326679, 3651532639, 851897554247, 24724573280923, 301787157353771, 14188276949397301, 22662903194758542865, 430644772287132696121, 1800653989272587268758525, 369150309888695460837999593
OFFSET
1,3
COMMENTS
Similar to A059248. - Michel Marcus and Colin Barker, Nov 28 2014
LINKS
EXAMPLE
a(4) = 17 because the first 4 positive Fibonacci numbers are [1,1,2,3], and 4/(1/1+1/1+1/2+1/3) = 24/17.
MATHEMATICA
Module[{nn=20, f}, f=Fibonacci[Range[nn]]; Table[HarmonicMean[Take[f, n]], {n, nn}]]//Denominator (* Harvey P. Dale, Aug 31 2020 *)
PROG
(PARI) s=vector(30); f=Vec(x/(1-x-x^2)+O(x^(#s+1))); n=d=0; for(k=1, #s, n++; d+=1/f[k]; s[k]=denominator(n/d)); s
CROSSREFS
Cf. A000045 (Fibonacci numbers), A250743 (numerators).
Cf. A059248.
Sequence in context: A307176 A309175 A179684 * A197875 A203116 A198090
KEYWORD
nonn,frac
AUTHOR
Colin Barker, Nov 27 2014
STATUS
approved