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 A182280 #9 Sep 08 2022 08:45:55 %S A182280 3,4,4,5,5,6,6,7,7,8,9,10,11,12,14,15,17,19,21,24,27,30,34,38,43,48, %T A182280 55,61,70,78,89,100,114,128,146,164,187,210,239,269,306,345,392,443, %U A182280 502,568,644,729,826,935,1059,1199,1358,1538,1742,1973,2235,2531,2867 %N A182280 a(n) = floor(a(n-1)/4)+a(n-2) with a(0)=3, a(1)=4. %C A182280 a(n)/a(n-1) tends to (1+sqrt(65))/8 = 1.132782218537318706... %H A182280 Bruno Berselli, <a href="/A182280/b182280.txt">Table of n, a(n) for n = 0..1000</a> %t A182280 RecurrenceTable[{a[0] == 3, a[1] == 4, a[n] == Floor(a[n - 1]/4) + a[n - 2]}, a, {n, 58}] %o A182280 (Magma) [n le 2 select n+2 else Floor(Self(n-1)/4)+Self(n-2): n in [1..59]]; %o A182280 (Haskell) %o A182280 a182280 n = a182280_list !! n %o A182280 a182280_list = 3 : 4 : zipWith (+) %o A182280 a182280_list (map (flip div 4) $ tail a182280_list) %o A182280 -- _Reinhard Zumkeller_, Apr 30 2015 %Y A182280 Cf. A064650, A182230, A182281; A188656. %K A182280 nonn %O A182280 0,1 %A A182280 _Bruno Berselli_, Apr 24 2012