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 A298401 #6 Feb 10 2018 17:52:23 %S A298401 1,2,3,-1,-10,-26,-30,-49,1,42,303,631,1294,2315,4295,7345,11624, %T A298401 18952,29820,47974,71734,113345,171197,270029,410170,647849,997829, %U A298401 1583173,2460742,3919360,6159752,9851417,15639201,25107026,40101859,64545565,103573904 %N A298401 a(n) = a(n-1) + a(n-2) - n*a(floor(n/2)), where a(0) = 1, a(1) = 2, a(2) = 3. %C A298401 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 A298401 Clark Kimberling, <a href="/A298401/b298401.txt">Table of n, a(n) for n = 0..1000</a> %t A298401 a[0] = 1; a[1] = 2; a[2] = 3; %t A298401 a[n_] := a[n] = a[n - 1] + a[n - 2] - n*a[Floor[n/2]]; %t A298401 Table[a[n], {n, 0, 30}] (* A298401 *) %Y A298401 Cf. A001622, A000045, A298338, A298400. %K A298401 easy,sign %O A298401 0,2 %A A298401 _Clark Kimberling_, Feb 10 2018