cp's OEIS Frontend

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.

A295721 a(n) = a(n-1) + 3*a(n-2) -2*a(n-3) - 2*a(n-4), where a(0) = -1, a(1) = 2, a(2) = 3, a(3) = 4.

This page as a plain text file.
%I A295721 #6 Aug 27 2021 21:20:50
%S A295721 -1,2,3,4,11,13,32,41,89,122,243,349,656,973,1757,2666,4679,7217,
%T A295721 12408,19369,32801,51658,86507,137141,227744,362837,598773,957514,
%U A295721 1572671,2521993,4127432,6633041,10826009,17426282,28383363,45744109,74389616,120002653
%N A295721 a(n) = a(n-1) + 3*a(n-2) -2*a(n-3) - 2*a(n-4), where a(0) = -1, a(1) = 2, a(2) = 3, a(3) = 4.
%C A295721 a(n)/a(n-1) -> (1 + sqrt(5))/2 = golden ratio (A001622), so that a( ) has the growth rate of the Fibonacci numbers (A000045).
%H A295721 Clark Kimberling, <a href="/A295721/b295721.txt">Table of n, a(n) for n = 0..2000</a>
%H A295721 <a href="/index/Rec#order_04">Index entries for linear recurrences with constant coefficients</a>, signature (1, 3, -2, -2)
%F A295721 a(n) = a(n-1) + a(n-3) + a(n-4), where a(0) = -1, a(1) = 2, a(2) = 3, a(3) = 4.
%F A295721 G.f.: (-1 + 3 x + 4 x^2 - 7 x^3)/(1 - x - 3 x^2 + 2 x^3 + 2 x^4).
%t A295721 LinearRecurrence[{1, 3, -2, -2}, {-1, 2, 3, 4}, 100]
%Y A295721 Cf. A001622, A000045, A005672.
%K A295721 easy,sign
%O A295721 0,2
%A A295721 _Clark Kimberling_, Nov 29 2017