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 A173199 #14 Sep 08 2022 08:45:50 %S A173199 0,1,1,2,3,5,7,11,16,24,35,50,72,103,147,209,297,421,597,845,1196, %T A173199 1692,2393,3383,4782,6759,9552,13498,19073,26949,38077,53799,76011, %U A173199 107393,151729,214368,302865,427895,604538,854102 %N A173199 a(n) = a(n-1)+a(n-2)-Floor(a(n-3)/2)-Floor(a(n-8)/2); initial terms are 0, 1, 1, 2, 3, 5, 7, 11. %C A173199 A two wave dying rabbits type sequence with limiting ratio 1.41280984879641. %t A173199 f[-6] = 0; f[-5] = 0; f[-4] = 0; f[-3] = 0; f[-2] = 0; f[-1] = 0; %t A173199 f[0] = 0; f[1] = 1; %t A173199 f[n_] := f[n] = f[n - 1] + f[n - 2] - Floor[f[n - 3]/2] - Floor[f[n -8]/2]; %t A173199 Table[f[n], {n, 0, 30}] %o A173199 (Magma) I:=[0, 1, 1, 2, 3, 5, 7, 11]; [ n le 8 select I[n] else Self(n-1)+Self(n-2)-(Self(n-3) div 2)-(Self(n-8) div 2): n in [1..40] ]; %Y A173199 Cf. A023438 (dying rabbits). %K A173199 nonn %O A173199 0,4 %A A173199 _Roger L. Bagula_, Nov 22 2010