OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..100
S. Gao and H. Niederhausen, Sequences Arising From Prudent Self-Avoiding Walks, 2010.
Index entries for linear recurrences with constant coefficients, signature (2,1,0,-1,1).
FORMULA
G.f.: x*(1+x-x^3+x^4)/(1-2*x-x^2+x^4-x^5).
a(0)=1, a(1)=3, a(2)=7, a(3)=16, a(4)=39, a(n)=2*a(n-1)+a(n-2)- a(n-4)+ a(n-5) [From Harvey P. Dale, Sep 20 2011]
EXAMPLE
a(3)=16 since there are 16 such walks: WWN, NWW, WNN, WNW, WNE, NNN, NNW, NNE, NEE, NWN, NEN, EEE, EEN, ENW, ENN, ENE.
MATHEMATICA
Rest[CoefficientList[Series[x (1+x-x^3+x^4)/(1-2x-x^2+x^4-x^5), {x, 0, 40}], x]] (* or *) LinearRecurrence[{2, 1, 0, -1, 1}, {1, 3, 7, 16, 39}, 40] (* Harvey P. Dale, Sep 20 2011 *)
PROG
(PARI) Vec(x*(1+x-x^3+x^4)/(1-2*x-x^2+x^4-x^5)+O(x^66)) \\ Joerg Arndt, May 13 2011
CROSSREFS
KEYWORD
nonn,walk
AUTHOR
Shanzhen Gao, May 11 2011
STATUS
approved