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”).

A200862
G.f.: (1-2*x^2)/(1-2*x-5*x^2+9*x^3).
1
1, 2, 7, 15, 47, 106, 312, 731, 2068, 4983, 13727, 33757, 91302, 227846, 608389, 1534290, 4059911, 10315771, 27122487, 69284630, 181339756, 465000279, 1213137668, 3119218927, 8119123683, 20916102989, 54354854050, 140218109898, 363965563145, 939827989330, 2437520805303, 6298491488951, 16326135100447
OFFSET
0,2
LINKS
Peter Lawrence et al., sequence challenge and follow-up messages on the SeqFan list, Nov 21 2011
FORMULA
a(n) = 2*a(n-1) +5*a(n-2) -9*a(n-3) for n>2. - Vincenzo Librandi, Jun 30 2014
MATHEMATICA
LinearRecurrence[{2, 5, -9}, {1, 2, 7}, 40] (* Harvey P. Dale, Jun 29 2014 *)
CoefficientList[Series[(1 - 2 x^2)/(1 - 2 x - 5 x^2 + 9 x^3), {x, 0, 40}], x] (* Vincenzo Librandi, Jun 30 2014 *)
CROSSREFS
Sequence in context: A330454 A121165 A093652 * A096690 A279286 A282197
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Nov 23 2011
STATUS
approved