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 A214286 #24 Sep 08 2022 08:46:02 %S A214286 0,0,0,0,0,0,1,1,3,4,7,12,20,33,53,87,141,228,369,597,966,1563,2530, %T A214286 4093,6624,10717,17341,28059,45401,73461,118862,192324,311187,503511, %U A214286 814698,1318209,2132907,3451116,5584024,9035140,14619165 %N A214286 a(n) = floor(Fibonacci(n)/7). %H A214286 Vincenzo Librandi, <a href="/A214286/b214286.txt">Table of n, a(n) for n = 0..1000</a> %H A214286 <a href="/index/Rec#order_18">Index entries for linear recurrences with constant coefficients</a>, signature (1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, -1, -1). %F A214286 G.f.: x^6*(1+x^2+x^5+x^6+x^7+x^9+x^10) / ( (1-x-x^2)*(1-x^16) ). - _R. J. Mathar_, Jul 14 2012 %F A214286 a(n) = (A000045(n) - A105870(n))/7. - _R. J. Mathar_, Jul 14 2012 %t A214286 Floor[Fibonacci[Range[0, 40]]/7] (* modified by _G. C. Greubel_, May 22 2019 *) %t A214286 LinearRecurrence[{1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,1,-1,-1},{0,0,0,0,0,0,1,1,3,4,7,12,20,33,53,87,141,228},50] (* _Harvey P. Dale_, Dec 01 2020 *) %o A214286 (Magma) [Floor(Fibonacci(n)/7): n in [0..40]]; %o A214286 (PARI) vector(40, n, n--; fibonacci(n)\7 ) \\ _G. C. Greubel_, May 22 2019 %o A214286 (Sage) [floor(fibonacci(n)/7) for n in (0..40)] # _G. C. Greubel_, May 22 2019 %Y A214286 Cf. A004695-A004699. %K A214286 nonn,easy %O A214286 0,9 %A A214286 _Vincenzo Librandi_, Jul 10 2012