Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A143644
Expansion of 1/(1 - x^3 - x^4 + x^7 - x^10 - x^11 + x^14) (a Salem polynomial).
23
1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 2, 2, 2, 3, 4, 4, 5, 6, 7, 9, 10, 12, 15, 18, 21, 26, 31, 37, 44, 54, 64, 76, 92, 111, 132, 159, 191, 229, 275, 330, 396, 475, 570, 684, 821, 985, 1182, 1418, 1703, 2043, 2451, 2942, 3531, 4236, 5084, 6101, 7321, 8785, 10543, 12652, 15182, 18219, 21864, 26237, 31485
OFFSET
0,11
COMMENTS
Limiting ratio is 1.2000265239873915..., the largest real root of 1 - x^3 - x^4 + x^7 - x^10 - x^11 + x^14: 1.200026523987391518902962100414 is a candidate for the smallest degree-14 Salem number. The absolute values of the roots of the polynomial are 0.8333149143..., 1.200026523..., and 1.0 (with multiplicity 12). The polynomial is self-reciprocal. - Joerg Arndt, Nov 03 2012
LINKS
Michael Mossinghoff, Small Salem Numbers
Index entries for linear recurrences with constant coefficients, signature (0,0,1,1,0,0,-1,0,0,1,1,0,0,-1).
FORMULA
G.f.: 1/(1 - x^3 - x^4 + x^7 - x^10 - x^11 + x^14). - Colin Barker, Nov 03 2012
a(n) = a(n-3) + a(n-4) - a(n-7) + a(n-10) + a(n-11) - a(n-14). - Franck Maminirina Ramaharo, Oct 30 2018
MAPLE
seq(coeff(series(1/(1-x^3-x^4+x^7-x^10-x^11+x^14), x, n+1), x, n), n = 0..50); # G. C. Greubel, Dec 06 2019
MATHEMATICA
CoefficientList[Series[1/(1-x^3-x^4+x^7-x^10-x^11+x^14), {x, 0, 50}], x]
PROG
(PARI) my(x='x+O('x^50)); Vec(1/(1-x^3-x^4+x^7-x^10-x^11+x^14)) \\ G. C. Greubel, Dec 06 2019
(Magma) R<x>:=PowerSeriesRing(Integers(), 50); Coefficients(R!( 1/(1-x^3-x^4+x^7-x^10-x^11+x^14) )); // G. C. Greubel, Dec 06 2019
(Sage)
def A143644_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 1/(1-x^3-x^4+x^7-x^10-x^11+x^14) ).list()
A143644_list(50) # G. C. Greubel, Dec 06 2019
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
New name from Colin Barker and Joerg Arndt, Nov 03 2012
STATUS
approved