Feryal Alayont has authored 6 sequences.
A380461
Number of edge covers of fan graph F_{2,n}.
Original entry on oeis.org
1, 16, 154, 1289, 10180, 78372, 596337, 4512900, 34064998, 256825009, 1935169456, 14577526976, 109797758833, 826945679592, 6227993359362, 46904386459065, 353244994467916, 2660340755025580, 20035394638446769, 150889230111278492, 1136366561949728110
Offset: 1
For n = 1, the fan graph F_{2,1} becomes a path with three vertices. There is exactly 1 edge cover.
For n = 2, the base graph P_2 has endpoints v and w, and two added vertices a and b each connect to both v and w. Each of a and b has 3 edge-covering options: use the edge to v, the edge to w, or both. This gives 3 × 3 = 9 combinations. For each, the edge (v,w) from P_2 may be included or not, giving 18 configurations. However, in 2 of these, omitting the edge (v,w) leaves v or w uncovered. Therefore, the number of valid edge covers is 18 - 2 = 16.
A374096
Number of edge covers of fan graph F_{1,n}.
Original entry on oeis.org
1, 4, 16, 59, 214, 768, 2745, 9792, 34900, 124339, 442906, 1577540, 5618665, 20011452, 71272296, 253840779, 904068526, 3219889720, 11467810393, 40843217384, 145465283884, 518082304131, 1845177508818, 6571697181084, 23405446635913, 83359734391300, 296890096642144
Offset: 1
The fan graph F_{1,2} is the cycle with three vertices and has 4 edge covers.
The graph F_{1,3} is formed by adding a chord to the cycle with four vertices. The cycle C_4 has 7 edge covers, so there are 7 edge covers of F_{1,3} without the chord. If the chord is there, the two endpoints are covered. To cover the remaining two vertices, we need at least one of the two edges on each side of each vertex, giving us 3*3 choices total. So we have 16 edge covers for F_{1,3}.
We interpret F_{1,1} to be the path with two vertices with one edge cover.
-
LinearRecurrence[{4, 0, -5, -2}, {1, 4, 16, 59}, 30] (* Paolo Xausa, Jan 22 2025 *)
A373293
Number of edge covers of the fan graph F_{n,3}.
Original entry on oeis.org
16, 154, 1240, 9202, 66016, 466954, 3283240, 23026402, 161316016, 1129605754, 7908421240, 55362491602, 387548070016, 2712868376554, 18990174295240, 132931507044802, 930521410248016, 6513652454539354, 45595574930185240, 319169047756526002
Offset: 1
-
A373293[n_] := 4*7^n - 5*3^n + 3; Array[A373293, 25] (* or *)
LinearRecurrence[{11, -31, 21}, {16, 154, 1240}, 25] (* Paolo Xausa, Jun 24 2024 *)
-
def a_n(n):
return 4 * 7**n - 5 * 3**n + 3
A363476
a(n) = Fibonacci(n)^2 * Fibonacci(n+1)^3.
Original entry on oeis.org
0, 1, 8, 108, 1125, 12800, 140608, 1565109, 17333064, 192329500, 2132531225, 23651979264, 262296652032, 2908947562937, 32260582549000, 357775937196300, 3967793428038237, 44003514081895936, 488006404120114496, 5412074146674562125, 60020821224245910600
Offset: 0
- F. Alayont and E. Henning, Edge Covers of Caterpillars, Cycles with Pendants, and Spider Graphs; submitted.
- José Heber Nieto, Problem 1854 solution, Mathematics Magazine, Vol. 84, No.4 (2011), pp. 300-301.
- Marian Tetiva, Problem 1854, Mathematics Magazine, Vol. 83, No.4 (2010), p. 304.
- Index entries for linear recurrences with constant coefficients, signature (8,40,-60,-40,8,1).
A358934
a(n) = Fibonacci(n+1)^5 - Fibonacci(n-1)^5.
Original entry on oeis.org
0, 1, 31, 242, 3093, 32525, 368168, 4051333, 45064131, 499200274, 5538624025, 61414079849, 681135796944, 7553728681433, 83772910243607, 929052526388050, 10303364319347757, 114266002348885717, 1267229634537217144, 14053790947047408701, 155858934437282250075
Offset: 0
Case n=1 is a star graph with five branches and one edge cover (all edges).
* *
\ /
*__C__*
|
*
For n=2, there are 31 edge covers of the graph obtained by gluing five P_3 paths at one single vertex. Each of the pendant edges of the P_3's have to be in the edge cover for the pendants to be incident with an edge. The middle vertices are then automatically incident with at least one edge. There remains the center vertex. We then need at least one of the remaining five edges to be in the subset, giving us 2^5-1 choices.
*__ * *__*
\ /
*__*__C__*__*
|
*__*
- Michael De Vlieger, Table of n, a(n) for n = 0..957
- Feryal Alayont and Evan Henning, Edge Covers of Caterpillars, Cycles with Pendants, and Spider Graphs, J. Int. Seq. (2023) Vol. 26, Art. 23.9.4.
- Index entries for linear recurrences with constant coefficients, signature (8,40,-60,-40,8,1).
-
LinearRecurrence[{8, 40, -60, -40, 8, 1}, {0, 1, 31, 242, 3093, 32525}, 20] (* Amiram Eldar, Dec 07 2022 *)
Join[{0},#[[3]]-#[[1]]&/@Partition[Fibonacci[Range[0,30]]^5,3,1]] (* Harvey P. Dale, Aug 05 2024 *)
-
from sympy import fibonacci
def a(n):
return fibonacci(n+1)**5-fibonacci(n-1)**5
-
from gmpy2 import fib2
def A358934(n): return sum(f:=fib2(n))**5-f[1]**5 # Chai Wah Wu, Jan 04 2023
A358917
a(n) = Fibonacci(n+1)^4 - Fibonacci(n-1)^4.
Original entry on oeis.org
0, 1, 15, 80, 609, 4015, 27936, 190385, 1307775, 8956144, 61405905, 420831071, 2884553280, 19770670945, 135511114479, 928804587920, 6366127657281, 43634071586575, 299072419071840, 2049872742473489, 14050037090947935, 96300386075488816, 660052667580788145
Offset: 0
Case n=1 is a star graph with four branches and one edge cover (all edges).
* *
\ /
*__C__*
For n=2, there are 15 edge covers of the graph obtained by gluing four P_3 paths at one single vertex. Each of the pendant edges of the P_3's have to be in the edge cover for the pendants to be incident with an edge. The middle vertices are then automatically incident with at least one edge. There remains the center vertex. We then need at least one of the remaining four edges to be in the subset, giving us 2^4-1 choices.
* *
\ /
* *
\ /
*__*__C__*__*
- Michael De Vlieger, Table of n, a(n) for n = 0..1196
- Feryal Alayont and Evan Henning, Edge Covers of Caterpillars, Cycles with Pendants, and Spider Graphs, J. Int. Seq. (2023) Vol. 26, Art. 23.9.4.
- Index entries for linear recurrences with constant coefficients, signature (4,19,4,-1).
-
LinearRecurrence[{4, 19, 4, -1}, {0, 1, 15, 80}, 25] (* Amiram Eldar, Dec 06 2022 *)
-
from sympy import fibonacci
def a(n): return fibonacci(n+1)**4-fibonacci(n-1)**4
Comments