This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A127884 #24 Sep 08 2022 08:45:29 %S A127884 1,0,0,0,1,1,1,2,3,5,8,12,17,26,40,61,93,143,220,338,521,805,1245, %T A127884 1932,3001,4668,7274,11350,17732,27734,43428,68072,106805,167731, %U A127884 263641,414732,652913,1028636,1621691,2558353,4038540,6378911,10081265 %N A127884 a(n) = floor(Fibonacci(n)/n). %H A127884 Vincenzo Librandi, <a href="/A127884/b127884.txt">Table of n, a(n) for n = 1..1000</a> %p A127884 with(combinat): a:=n->floor(fibonacci(n)/n): seq(a(n),n=1..50); # _Emeric Deutsch_, Apr 16 2007 %t A127884 Table[Floor[Fibonacci[n]/n],{n,50}] (* _Harvey P. Dale_, Jan 25 2011 *) %o A127884 (Magma) [Floor(Fibonacci(n)/n): n in [1..50]]; // _Vincenzo Librandi_, Jul 10 2012 %o A127884 (PARI) for(n=1, 50, print1(floor(fibonacci(n)/n), ", ")) \\ _G. C. Greubel_, Apr 29 2018 %o A127884 (PARI) a(n) = fibonacci(n)\n; \\ _Michel Marcus_, Apr 30 2018 %o A127884 (GAP) List([1..50],n->Int(Fibonacci(n)/n)); # _Muniru A Asiru_, Apr 30 2018 %Y A127884 Cf. A000045. %K A127884 nonn,easy %O A127884 1,8 %A A127884 _Leroy Quet_, Apr 05 2007 %E A127884 More terms from _Emeric Deutsch_, Apr 16 2007