OFFSET
0,2
REFERENCES
P. de la Harpe, Topics in Geometric Group Theory, Univ. Chicago Press, 2000, p. 158.
LINKS
Harry J. Smith, Table of n, a(n) for n = 0..500
Index entries for linear recurrences with constant coefficients, signature (2, 0, -1).
FORMULA
G.f.: (1+2*x+2*x^2+x^3)/((1-x-x^2)*(1-x)).
MAPLE
seq(`if`(n=0, 1, 2*combinat[fibonacci](n+4)-6), n=0..35); # Nathaniel Johnston, Jun 28 2011
MATHEMATICA
Table[If[n == 0, 1, 2*Fibonacci[n + 4] - 6], {n, 0, 100}] (* Vladimir Joseph Stephan Orlovsky, Jun 28 2011 *)
PROG
(PARI) a(n) = { if(n==0, 1, 2*fibonacci(n+4) - 6) } \\ Harry J. Smith, Aug 29 2009
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Aug 14 2001
STATUS
approved