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 A298403 #6 Feb 10 2018 17:52:36 %S A298403 1,2,3,7,15,30,60,112,209,373,664,1149,1985,3366,5695,9517,15877, %T A298403 26268,43392,71280,116956,191184,312237,508667,828135,1346018,2186735, %U A298403 3548701,5757079,9333118,15127052,24506542,39695843,64280511,104080748,168491921,272746723 %N A298403 a(n) = 2*a(n-1) - a(n-3) + a(floor(n/2)), where a(0) = 1, a(1) = 2, a(2) = 3. %C A298403 a(n)/a(n-1) -> (1 + sqrt(5))/2, the golden ratio (A001622), so that (a(n)) has the growth rate of the Fibonacci numbers (A000045). See A298338 for a guide to related sequences. %H A298403 Clark Kimberling, <a href="/A298403/b298403.txt">Table of n, a(n) for n = 0..1000</a> %t A298403 a[0] = 1; a[1] = 2; a[2] = 3; %t A298403 a[n_] := a[n] = 2*a[n - 1] - a[n - 3] + a[Floor[n/2]]; %t A298403 Table[a[n], {n, 0, 90}] (* A298403 *) %Y A298403 Cf. A001622, A000045, A298338, A298402. %K A298403 nonn,easy %O A298403 0,2 %A A298403 _Clark Kimberling_, Feb 10 2018