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.

A049663 a(n) = (F(6*n+5) - 1)/4, where F = A000045 (the Fibonacci sequence).

This page as a plain text file.
%I A049663 #26 Nov 28 2024 14:59:28
%S A049663 1,22,399,7164,128557,2306866,41395035,742803768,13329072793,
%T A049663 239180506510,4291920044391,77015380292532,1381984925221189,
%U A049663 24798713273688874,444994854001178547,7985108658747524976,143286961003454271025,2571180189403429353478
%N A049663 a(n) = (F(6*n+5) - 1)/4, where F = A000045 (the Fibonacci sequence).
%H A049663 Colin Barker, <a href="/A049663/b049663.txt">Table of n, a(n) for n = 0..700</a>
%H A049663 <a href="/index/Rec#order_03">Index entries for linear recurrences with constant coefficients</a>, signature (19,-19,1).
%F A049663 From _R. J. Mathar_, Oct 26 2015: (Start)
%F A049663 G.f.: (1+3*x)/( (1-x)*(x^2-18*x+1) ).
%F A049663 a(n) = A049664(n+1) + 3*A049664(n). (End)
%F A049663 From _Colin Barker_, Mar 04 2016: (Start)
%F A049663 a(n) = (-1/4+1/40*(9+4*sqrt(5))^(-n)*(25-11*sqrt(5)+(9+4*sqrt(5))^(2*n)*(25+11*sqrt(5)))).
%F A049663 a(n) = 19*a(n-1) - 19*a(n-2) + a(n-3) for n>2. (End)
%F A049663 Product_{n>=1} (1 - 1/a(n)) = 4*phi^2/11 = 2*(sqrt(5)+3)/11, where phi is the golden ratio (A001622). - _Amiram Eldar_, Nov 28 2024
%t A049663 (Fibonacci[6*Range[0,20]+5]-1)/4 (* or *) LinearRecurrence[{19,-19,1},{1,22,399},20] (* _Harvey P. Dale_, Sep 22 2016 *)
%o A049663 (PARI) Vec((1+3*x)/((1-x)*(1-18*x+x^2)) + O(x^25)) \\ _Colin Barker_, Mar 04 2016
%o A049663 (PARI) for(n=0,30, print1((fibonacci(6*n+5) - 1)/4, ", ")) \\ _G. C. Greubel_, Dec 02 2017
%o A049663 (Magma) [(Fibonacci(6*n+5) - 1)/4: n in [0..30]]; // _G. C. Greubel_, Dec 02 2017
%Y A049663 Cf. A000045, A001622, A049664.
%K A049663 nonn,easy
%O A049663 0,2
%A A049663 _Clark Kimberling_