OFFSET
5,2
REFERENCES
R. K. Guy, "Anyone for Twopins?" in D. A. Klarner, editor, The Mathematical Gardner. Prindle, Weber and Schmidt, Boston, 1981, pp. 2-15.
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
R. K. Guy, Anyone for Twopins?, in D. A. Klarner, editor, The Mathematical Gardner. Prindle, Weber and Schmidt, Boston, 1981, pp. 2-15. [Annotated scanned copy, with permission]
Simon Plouffe, Approximations de séries génératrices et quelques conjectures, Dissertation, Université du Québec à Montréal, 1992; arXiv:0911.4975 [math.NT], 2009.
Simon Plouffe, 1031 Generating Functions, Appendix to Thesis, Montreal, 1992
Index entries for linear recurrences with constant coefficients, signature (2,0,0,-1,0,-1).
FORMULA
a(n) = 2a(n-1) - a(n-4) - a(n-6). - John W. Layman
G.f.: x^5/((x^3+x^2-1)*(x^3-x^2+2*x-1)). - Ralf Stephan, Apr 22 2004
MAPLE
A005682:=1/((z**3-z**2+2*z-1)*(z**3+z**2-1)); # conjectured (correctly) by Simon Plouffe in his 1992 dissertation for offset 0
MATHEMATICA
CoefficientList[ Series[x^5/((x^3 + x^2 - 1)(x^3 - x^2 + 2 x - 1)), {x, 0, 41}], x] (* or *)
a[n_] := a[n] = 2 a[n - 1] - a[n - 4] - a[n - 6]; a[0] = a[1] = a[2] = a[3] = a[4] = 0; a[5] = 1; Array[a, 42, 0] (* or *)
LinearRecurrence[{2, 0, 0, -1, 0, -1}, {0, 0, 0, 0, 0, 1}, 38] (* Robert G. Wilson v, Jun 22 2014 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
EXTENSIONS
More terms from David W. Wilson
STATUS
approved