OFFSET
0,2
COMMENTS
Number of self-avoiding walks on the strip {0,1} X Z.
Variant of A038577. [R. J. Mathar, Dec 13 2008]
LINKS
A. T. Benjamin, Self-avoiding walks and Fibonacci numbers, Fib. Quart., 44 (No. 4, 2006), 330-334.
Doron Zeilberger, Self Avoiding Walks, The Language of Science, and Fibonacci Numbers, arXiv:math/9506214 [math.CO], Jun 03 1995.
Index entries for linear recurrences with constant coefficients, signature (1,3,-2,-3,1,1).
FORMULA
G.f.: -2*x*(2*x^4-x^3-3*x^2+x+2) / ((x-1)^2*(x+1)^2*(x^2+x-1)). - Colin Barker, Mar 18 2013
MATHEMATICA
LinearRecurrence[{1, 3, -2, -3, 1, 1}, {0, 4, 6, 12, 20, 36}, 40] (* Jean-François Alcover, Jan 09 2019 *)
Table[If[EvenQ[n], 8Fibonacci[n]-n, 8Fibonacci[n]-4], {n, 0, 40}] (* Harvey P. Dale, Jun 12 2019 *)
PROG
(PARI) a(n) = if (n % 2, 8*fibonacci(n)-4, 8*fibonacci(n)-n); \\ Michel Marcus, Sep 07 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Sep 30 2007
STATUS
approved
