A301417 Sums of positive coefficients in generalized Chebyshev polynomials of the first kind, for a family of 4 data.
1, 4, 19, 98, 516, 2725, 14400, 76105, 402229, 2125864, 11235643, 59382770, 313850616, 1658767513, 8766940464, 46335152161, 244891172089, 1294302130684, 6840663104371, 36154365042098, 191083538489436, 1009917298758493, 5337628549243344, 28210506508524169
Offset: 1
Links
- Gregory Gerard Wojnar, Table of n, a(n) for n = 1..68
- G. G. Wojnar, D. S. Wojnar, and L. Q. Brin, Universal peculiar linear mean relationships in all polynomials, arXiv:1706.08381 [math.GM], 2017. See Table GW.n=4 p. 23.
- Gregory Gerard Wojnar, Java program. Within the program, the variable I denotes the number of data; J denotes the exponent.
- Michel Marcus, pari script (translated from java)
- Index entries for linear recurrences with constant coefficients, signature (5, 2, -2, -3, -1).
Programs
-
Mathematica
CoefficientList[Series[(-x (x + 1)^3 + 1)/(x^5 + 3 x^4 + 2 x^3 - 2 x^2 - 5 x + 1), {x, 0, 23}], x] (* Michael De Vlieger, Apr 07 2018 *) LinearRecurrence[{5, 2, -2, -3, -1}, {1, 4, 19, 98, 516}, 24] (* Jean-François Alcover, Dec 02 2018 *)
-
PARI
lista(4, nn) \\ use pari script link; Michel Marcus, Apr 21 2018
Formula
G.f.: (-x*(x+1)^3+1)/(x^5+3*x^4+2*x^3-2*x^2-5*x+1); this denominator equals (1-x)*(2-(1+x)^4).
a(n+5) = 5*a(n+4)+2*a(n+3)-2*a(n+2)-3*a(n+1)-a(n).
Comments