A124593 Number of 4-indecomposable trees with n nodes.
1, 1, 1, 1, 2, 3, 6, 11, 13, 17, 23, 27, 33, 42, 48, 57, 69, 78, 90, 106, 118, 134, 154, 170, 190, 215, 235, 260, 290, 315, 345, 381, 411, 447, 489, 525, 567, 616, 658, 707, 763, 812, 868, 932, 988, 1052, 1124, 1188, 1260, 1341, 1413, 1494, 1584, 1665, 1755, 1855, 1945
Offset: 0
Examples
Rather than show some 4-indecomposable trees, instead we show all four 3-indecomposable trees with 7 nodes: O-O-O-O-O....O..........O.O...O...O ....|........|..........|/.....\./. ....O....O-O-O-O-O..O-O-O-O...O-O-O ....|........|..........|....../.\. ....O........O..........O.....O...O On the other hand, O-O-O-O-O-O-O is 3-decomposable, because removing the third edge gives O-O-O O-O-O-O, with 2 connected components each with >= 3 nodes.
Links
- Colin Barker, Table of n, a(n) for n = 0..1000
- Index entries for linear recurrences with constant coefficients, signature (1,1,1,-2,-2,1,1,1,-1).
Programs
-
PARI
Vec((1 -x^2 -2*x^3 +x^4 +3*x^5 +3*x^6 +2*x^7 -4*x^8 -5*x^9 -3*x^10 +3*x^11 +4*x^12 +x^13 -x^14 -x^15) / ((1 -x)^4*(1 +x)*(1 +x +x^2)^2) + O(x^50)) \\ Colin Barker, May 27 2016
Formula
G.f.: f(x) / ((1-x)*(1-x^2)*(1-x^3)^2) where f(x) = 1 - x^2 - 2*x^3 + x^4 + 3*x^5 + 3*x^6 + 2*x^7 - 4*x^8 - 5*x^9 - 3*x^10 + 3*x^11 + 4*x^12 + x^13 - x^14 - x^15.
Comments