OFFSET
0,1
COMMENTS
a(n) is the number of edge covers of a rocket graph R_{3,n,n}.
A rocket graph R_{3,n,n} is cycle graph C_3 with two paths of n edges, where an end vertex of each path is identified with a distinct vertex in the C_3.
In other words, a rocket graph is a path with vertices -n-1, ..., -1, 0, 1, ..., n+1 with an additional edge (-1,1).
LINKS
Paolo Xausa, Table of n, a(n) for n = 0..1000
Index entries for linear recurrences with constant coefficients, signature (2,2,-1).
FORMULA
G.f.: (4-2*x)/(1-2*x-2*x^2+x^3).
a(n) = 2*A059929(n+1).
a(n) = Fibonacci(2n+2)+3*Fibonacci(n+1)*Fibonacci(n+1).
EXAMPLE
For n=1, the R_{3,1,1} rocket graph is as follows and has a(1)=6 edge covers.
*--*
/|
* |
\|
*--*
MATHEMATICA
LinearRecurrence[{2, 2, -1}, {4, 6, 20}, 50] (* Paolo Xausa, Jul 20 2024 *)
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Bridget Rozema, Jul 01 2024
STATUS
approved