|
Search: id:A029907
|
|
|
| A029907 |
|
a(n+1) = a(n) + a(n-1) + Fibonacci(n). |
|
+0 13
|
|
| 0, 1, 2, 4, 8, 15, 28, 51, 92, 164, 290, 509, 888, 1541, 2662, 4580, 7852, 13419, 22868, 38871, 65920, 111556, 188422, 317689, 534768, 898825, 1508618, 2528836, 4233872, 7080519, 11828620, 19741179, 32916068, 54835556, 91276202
(list; graph; listen)
|
|
|
OFFSET
|
0,3
|
|
|
COMMENT
|
Number of matchings of the fan graph on n vertices, n>0 (a fan is the join of the path graph with one extra vertex).
A029907(n+1) gives row sums of A054450. - Paul Barry (pbarry(AT)wit.ie), Oct 23 2004
|
|
FORMULA
|
G.f.: x*(1-x^2)/(1-x-x^2)^2. a(n)= ((n+4)*F(n)+2*n*F(n-1))/5, F(n)=A000045(n) (Fibonacci).
a(n+1)=sum{k=0..n, sum{j=0..floor(k/2), binomial(n-j, j)}}. - Paul Barry (pbarry(AT)wit.ie), Oct 23 2004
|
|
EXAMPLE
|
a(4)=8 because matchings of fan graph with edges {OA,OB,OC,AB,AC} are {},{OA},{OB},{OC},{AB},{AC},{OA,BC},{OC,AB}.
|
|
MAPLE
|
with(combinat); A029907 := proc(n) options remember; if n <= 1 then n else A029907(n-1)+A029907(n-2)+fibonacci(n-1); fi; end;
|
|
PROGRAM
|
(PARI) alias(F, fibonacci); a(n)=((n+4)*F(n)+2*n*F(n-1))/5
|
|
CROSSREFS
|
Sequence in context: A036615 A006808 A006727 this_sequence A005682 A114833 A065617
Adjacent sequences: A029904 A029905 A029906 this_sequence A029908 A029909 A029910
|
|
KEYWORD
|
nonn
|
|
AUTHOR
|
njas
|
|
EXTENSIONS
|
Additional formula from Wolfdieter Lang (wolfdieter.lang(AT)physik.uni-karlsruhe.de), May 02 2000
Additional comments from Michael Somos, Jul 23, 2002
|
|
|
Search completed in 0.002 seconds
|