login
A181600
Expansion of 1/(1 - x - x^2 + x^8 - x^10).
23
1, 1, 2, 3, 5, 8, 13, 21, 33, 53, 85, 136, 218, 349, 559, 895, 1434, 2297, 3679, 5893, 9439, 15119, 24217, 38790, 62132, 99520, 159407, 255331, 408978, 655083, 1049283, 1680695, 2692063, 4312028, 6906816, 11063033, 17720278, 28383559, 45463532, 72821479
OFFSET
0,3
COMMENTS
Limiting ratio is 1.60176..., the largest real root of -1 + x^2 - x^8 - x^9 + x^10. Compare this constant to Lehmer's Salem constant A073011 and the golden mean.
FORMULA
a(n) = a(n-1) + a(n-2) - a(n-8) + a(n-10). - Franck Maminirina Ramaharo, Oct 31 2018
MATHEMATICA
CoefficientList[Series[1/(1 - x - x^2 + x^8 - x^10), {x, 0, 50}], x]
LinearRecurrence[{1, 1, 0, 0, 0, 0, 0, -1, 0, 1}, {1, 1, 2, 3, 5, 8, 13, 21, 33, 53}, 50] (* Harvey P. Dale, Aug 11 2015 *)
PROG
(PARI) Vec(1/(1 -x -x^2 +x^8 -x^10) + O(x^50)) \\ G. C. Greubel, Nov 16 2016
(Magma) m:=50; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1 -x-x^2+x^8-x^10))); // G. C. Greubel, Nov 03 2018
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, May 06 2013
STATUS
approved