login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A173243
G.f. (x + 1)^10/(x^10 + x^9 - x^7 - x^6 - x^5 - x^4 - x^3 + x + 1).
1
1, 9, 36, 85, 135, 163, 178, 208, 265, 341, 419, 485, 549, 642, 778, 940, 1110, 1290, 1498, 1761, 2095, 2487, 2921, 3413, 4000, 4712, 5565, 6563, 7711, 9044, 10627, 12516, 14745, 17352, 20397, 23969, 28187, 33176, 39048, 45931, 54007, 63509
OFFSET
0,2
COMMENTS
Limiting ratio is a(n+1)/a(n)->1.1762808182599176..
MATHEMATICA
p[x_] = (x + 1)^10/(x^10 + x^9 - x^7 - x^6 - x^5 - x^4 - x^3 + x + 1);
a = Table[SeriesCoefficient[ Series[p[x], {x, 0, 50}], n], {n, 0, 50}]
LinearRecurrence[{-1, 0, 1, 1, 1, 1, 1, 0, -1, -1}, {1, 9, 36, 85, 135, 163, 178, 208, 265, 341, 419}, 50] (* Harvey P. Dale, Sep 04 2021 *)
CROSSREFS
Sequence in context: A173682 A009522 A045851 * A162258 A128642 A342252
KEYWORD
nonn
AUTHOR
Roger L. Bagula, Feb 13 2010
EXTENSIONS
Removed unused variables - The Assoc. Editors of the OEIS, Feb 24 2010
STATUS
approved