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!)
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 (list; graph; refs; listen; history; text; internal format)
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
CROSSREFS
Sequence in context: A094988 A173911 A076269 * A363336 A104410 A018048
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
New name from Colin Barker and Joerg Arndt, Nov 03 2012
STATUS
approved

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 April 25 07:07 EDT 2024. Contains 371964 sequences. (Running on oeis4.)