login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A152063 Triangle read by rows. Coefficients of the Fibonacci product polynomials F(n) = Product_{k=1..(n - 1)/2} (1 + 4*cos^2(k*Pi/n)). 9

%I #47 May 30 2024 22:19:38

%S 1,1,1,2,1,3,1,5,5,1,6,8,1,8,19,13,1,9,25,21,1,11,42,65,34,1,12,51,90,

%T 55,1,14,74,183,210,89,1,15,86,234,300,144,1,17,115,394,717,654,233,6,

%U 18,130,480,951,954,377,1,20,165,725,1825,2622,1985,610,1,21,183,855

%N Triangle read by rows. Coefficients of the Fibonacci product polynomials F(n) = Product_{k=1..(n - 1)/2} (1 + 4*cos^2(k*Pi/n)).

%C The triangle A125076 is formed by reading upward sloping diagonals. - _Gary W. Adamson_, Nov 26 2008

%C Bisection of the triangle: odd-indexed rows are reversals of the rows of A126124, even-indexed rows are the reversals of the rows of A123965. - _Gary W. Adamson_, Aug 15 2010

%H James P. Bradshaw, Philipp Lampe, and Dusan Ziga, <a href="https://arxiv.org/abs/1910.11823">Snake graphs and their characteristic polynomials</a>, arXiv:1910.11823 [math.CO], 2019. See 4.7 p. 16.

%H N. D. Cahill and D. A. Narayan, <a href="http://www.fq.math.ca/Papers1/42-3/quartcahill03_2004.pdf">Fibonacci and Lucas Numbers as Tridiagonal Matrix Determinants</a>, Fibonacci Quarterly, 42(3):216-221, 2004.

%H M. X. He, D. Simon and P. E. Ricci, <a href="http://www.fq.math.ca/Scanned/35-2/he.pdf">Dynamics of the zeros of Fibonacci polynomials</a>, Fibonacci Quarterly, 35(2):160-168, 1997.

%H V. E. Hoggatt and C. T. Long, <a href="http://www.fq.math.ca/Scanned/12-2/hoggatt1.pdf">Divisibility Properties of Generalized Fibonacci Polynomials</a>, Fibonacci Quarterly, 12:113-120, 1974.

%F Recurrence (as monic polynomials) P(n+4) = (1 + 3*q)*P(n+2) - q^2*P(n). - _F. Chapoton_, May 27 2024

%F As monic polynomials, these are the numerators of the polynomials from A011973 evaluated at 1/(1+q). - _F. Chapoton_, May 28 2024

%e First few rows of the triangle are:

%e 1;

%e 1;

%e 1, 2;

%e 1, 3;

%e 1, 5, 5;

%e 1, 6, 8;

%e 1, 8, 19, 13;

%e 1, 9, 25, 21;

%e 1, 11, 42, 65, 34;

%e 1, 12, 51, 90, 55;

%e 1, 14, 74, 183, 210, 89;

%e 1, 15, 86, 234, 300, 144;

%e 1, 17, 115, 394, 717, 654, 233;

%e 1, 18, 130, 480, 951, 954, 377;

%e 1, 20, 165, 725, 1825, 2622, 1985, 610;

%e 1, 21, 183, 855, 2305, 3573, 2939, 987;

%e ...

%e By row, alternate signs (+,-,+,-,...) with descending exponents. Rows with n terms have exponents (n-1), (n-2), (n-3),...;

%e Example: There are two rows with 4 terms corresponding to the polynomials

%e x^3 - 8x^2 + 19x - 13 (roots associated with the heptagon); and

%e x^3 - 9x^2 + 25x - 21 (roots associated with the 9-gon (nonagon)).

%p P := proc(n) option remember; if n < 5 then return

%p ifelse(n < 3, 1, ifelse(n = 3, 1 + 2*q, 1 + 3*q)) fi;

%p (1 + 3*q)*P(n - 2) - q^2*P(n - 4) end:

%p T := n -> local k; seq(coeff(P(n), q, k), k = 0..(n-1)/2):

%p for n from 1 to 12 do T(n) od; # (after _F. Chapoton_) _Peter Luschny_, May 27 2024

%p # Alternative:

%p P := n -> local k; add(binomial(n-k,k)*(1+x)^(floor(n/2)-k)*x^k, k=0..floor(n/2)):

%p T := n -> local k; seq(coeff(P(n), x, k), k = 0..n/2):

%p for n from 0 to 12 do T(n) od; # (after _F. Chapoton_) _Peter Luschny_, May 28 2024

%Y Cf. A000045, A002530 (row sums), A125076, A126124, A123965, A011973.

%K nonn,tabf

%O 1,4

%A _Gary W. Adamson_ and _Roger L. Bagula_, Nov 22 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 16 10:17 EDT 2024. Contains 375174 sequences. (Running on oeis4.)