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 A055273 #46 Sep 08 2022 08:45:01 %S A055273 1,8,23,61,160,419,1097,2872,7519,19685,51536,134923,353233,924776, %T A055273 2421095,6338509,16594432,43444787,113739929,297775000,779585071, %U A055273 2040980213,5343355568,13989086491,36623903905,95882625224,251023971767,657189290077,1720543898464 %N A055273 a(n) = 3*a(n-1) - a(n-2) with a(0) = 1, a(1) = 8. %D A055273 A. H. Beiler, Recreations in the Theory of Numbers, Dover, N.Y., 1964, pp. 194-196. %H A055273 Vincenzo Librandi, <a href="/A055273/b055273.txt">Table of n, a(n) for n = 0..1000</a> %H A055273 Tanya Khovanova, <a href="http://www.tanyakhovanova.com/RecursiveSequences/RecursiveSequences.html">Recursive Sequences</a> %H A055273 <a href="/index/Rec#order_02">Index entries for linear recurrences with constant coefficients</a>, signature (3,-1). %F A055273 a(n) = (8*(((3 + sqrt(5))/2)^n - ((3 - sqrt(5))/2)^n) - (((3 + sqrt(5))/2)^(n - 1) - ((3 - sqrt(5))/2)^(n - 1)))/sqrt(5). %F A055273 G.f.: (1 + 5*x)/(1 - 3*x + x^2). %F A055273 From _Rigoberto Florez_, Dec 24 2018: (Start) %F A055273 a(n) = Fibonacci(2n+2) + 5*Fibonacci(2n), %F A055273 a(n) = 3*Fibonacci(2n+2) - Fibonacci(2n-3). (End) %F A055273 E.g.f.: (1/5)*exp(3*x/2)*(5*cosh(sqrt(5)*x/2) + 13*sqrt(5)*sinh(sqrt(5)*x/2)). - _Franck Maminirina Ramaharo_, Dec 26 2018 %F A055273 a(n) = ChebyshevT(n, 3/2) + (13/2)*ChebyshevU(n-1, 3/2) = ChebyshevU(n, 3/2) + 5*ChebyshevU(n-1, 3/2). - _G. C. Greubel_, Jan 17 2020 %p A055273 seq(coeff(series((1+5*x)/(1-3*x+x^2),x,n+1), x, n), n = 0 .. 30); # _Muniru A Asiru_, Dec 29 2018 %t A055273 Table[3Fibonacci[2n+2]-Fibonacci[2n-3], {n,0,20}] (* _Rigoberto Florez_, Dec 24 2018 *) %t A055273 LinearRecurrence[{3, -1}, {1, 8}, 30] (* _Vincenzo Librandi_, Dec 25 2018 *) %o A055273 (Magma) [Fibonacci(2*n+2) + 5*Fibonacci(2*n): n in [0..30]]; // _Vincenzo Librandi_, Dec 25 2018 %o A055273 (GAP) a:=[1,8];; for n in [3..30] do a[n]:=3*a[n-1]-a[n-2]; od; Print(a); # _Muniru A Asiru_, Dec 29 2018 %o A055273 (PARI) vector(30, n, fibonacci(2*n) + 5*fibonacci(2*n-2) ) \\ _G. C. Greubel_, Jan 17 2020 %o A055273 (Sage) [fibonacci(2*n+2) +5*fibonacci(2*n) for n in (0..30)] # _G. C. Greubel_, Jan 17 2020 %Y A055273 Cf. A000032, A000045, A055267. %K A055273 easy,nonn %O A055273 0,2 %A A055273 _Barry E. Williams_, May 28 2000