login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A014278
Number of trees on n nodes with 3 forbidden limbs of size 4, 5 and 6.
1
0, 1, 1, 2, 3, 6, 12, 30, 67, 159, 381, 929, 2282, 5680, 14241, 36009, 91611, 234512, 603330, 1559582, 4047956, 10546556, 27570983, 72301171, 190136444, 501323021, 1324981299, 3509660618, 9315633928, 24773632117, 65999430834, 176121938800, 470720836811, 1259936118810, 3376997883966, 9063076063854
OFFSET
0,4
FORMULA
G.f. (x-x^4-x^5-x^6+2*x^7)/[Product_{p>=1} (1-x^p)^a(p)], implicit form. - R. J. Mathar, Feb 27 2016
MATHEMATICA
nmax = 30; b = ConstantArray[0, nmax+1]; b[[1]] = 0; b[[2]] = 1; Do[b[[n+1]] = SeriesCoefficient[(x-x^4-x^5-x^6+2*x^7) / Product[(1 - x^p)^(b[[p+1]]), {p, 1, n-1}], {x, 0, n}], {n, 2, nmax}]; b (* Vaclav Kotesovec, Feb 28 2016 *)
CROSSREFS
Sequence in context: A300323 A375181 A261230 * A061056 A060777 A200744
KEYWORD
nonn
AUTHOR
STATUS
approved