cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A245051 Number of hybrid 8-ary trees with n internal nodes.

Original entry on oeis.org

1, 2, 31, 691, 18054, 515892, 15615159, 492007235, 15968172965, 530169356965, 17922457144129, 614796956579459, 21346411113410148, 748762981653051898, 26493592534823331169, 944491728494004127029, 33892155096781949014406, 1223212951343094980654244
Offset: 0

Views

Author

Alois P. Heinz, Jul 10 2014

Keywords

Crossrefs

Column k=8 of A245049.

Programs

  • Maple
    a:= n-> add(binomial(7*n+i, i)*binomial(7*n+i+1, n-i), i=0..n)/(7*n+1):
    seq(a(n), n=0..20);

Formula

a(n) = 1/(7*n+1) * Sum_{i=0..n} C(7*n+i,i)*C(7*n+i+1,n-i).
a(n) = [x^n] ((1+x)/(1-x-x^2))^(7*n+1) / (7*n+1).
G.f. satisfies: A(x) = (1+x*A(x)^7) * (1+x*A(x)^8).