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.

A273660 Number of forests of labeled rooted trees of height at most 1, with n labels, ten of which are used for root nodes and any root may contain >= 1 labels.

Original entry on oeis.org

115975, 6188545, 188526162, 4324211606, 83234980829, 1422697691415, 22336690031656, 329296289467288, 4628083121855622, 62687799439000450, 824939949711312292, 10611095747493196956, 134039591449028959694, 1668916223557034160170, 20541239452587941670792
Offset: 10

Views

Author

Alois P. Heinz, May 27 2016

Keywords

Crossrefs

Column k=10 of A143396.

Programs

  • Maple
    a:= n-> binomial(n,10)*add(Stirling2(10,j)*j^(n-10), j=0..10):
    seq(a(n), n=10..40);

Formula

E.g.f.: x^10/10! * Sum_{j=0..10} Stirling2(10,j)*exp(x)^j.
a(n) = C(n,10) * Sum_{j=0..10} Stirling2(10,j) * j^(n-10).