David Kofoed Wind has authored 2 sequences.
A359704
Minimum number of spanning trees in a 3-connected graph on n nodes.
Original entry on oeis.org
16, 45, 75, 209, 336, 928, 1445, 3965, 6000, 16555
Offset: 4
a(4) = 16 which is the number of spanning trees in the complete graph on 4 nodes.
Cf.
A006290 (3-connected graphs),
A199676 (minimally 3-connected graphs).
A215595
Number of strings of length n, formed from the 26-letter English alphabet, which contain the substring xy.
Original entry on oeis.org
0, 0, 1, 52, 2027, 70226, 2280825, 71112600, 2155562551, 64005323902, 1870809923477, 54006556365476, 1543466751232275, 43746473462661450, 1231293799939647601, 34451045198171912752, 959005856055827234927, 26576960554539062120726, 733650711461388661963725
Offset: 0
For n = 2, the only such string is xy. For n = 3, there are 26 strings of the form *xy and 26 of the form xy*. For n = 4, there are 26^2 of each of the forms xy**, *xy* and **xy, but we double count xyxy, so the answer for n=4 is 3*26^2 - 1 = 2027.
Cf.
A186314 (same problem for ternary strings).
-
Join[{0}, CoefficientList[Series[x/(1 - 52*x + 677*x^2 - 26*x^3), {x, 0, 50}], x]] (* G. C. Greubel, Feb 26 2017 *)
-
x='x+O('x^50); concat([0,0], Vec(x/(1 - 52*x + 677*x^2 - 26*x^3))) \\ G. C. Greubel, Feb 26 2017
Comments