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.

A006964 Number of directed rooted trees with n nodes.

Original entry on oeis.org

1, 3, 15, 82, 495, 3144, 20875, 142773, 1000131, 7136812, 51702231, 379234623, 2810874950, 21020047557, 158398829121, 1201617201230, 9169060501023, 70329406653879, 541949364313821, 4193569906262874, 32571403998781956, 253842927519362734, 1984442128649393178
Offset: 1

Views

Author

Keywords

Comments

Also rooted trees with n nodes and 3-colored non-root nodes. - Christian G. Bower, Apr 15 1998

References

  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A038059.
Column k=3 of A242249.

Programs

  • Maple
    with(numtheory): a:= proc(n) option remember; `if`(n<2, n, (add(add(d*a(d), d=divisors(j)) *a(n-j)*3, j=1..n-1))/(n-1)) end: seq(a(n), n=1..30); # Alois P. Heinz, Sep 06 2008
  • Mathematica
    a[n_] := a[n] = If[n<2, n, (Sum[Sum[d*a[d], {d, Divisors[j]}]*a[n-j]*3, {j, 1, n-1}])/(n-1)]; Table[a[n], {n, 1, 30}] (* Jean-François Alcover, Mar 30 2015, after Alois P. Heinz *)

Formula

a(n+1) has g.f.: Product_{n>=1} (1 - x^3*a(n))^-1.
a(n) ~ c * d^n / n^(3/2), where d = 8.356026879295995368276069578708912..., c = 0.13645899548680457355557420025756... . - Vaclav Kotesovec, Aug 20 2014
G.f. A(x) satisfies: A(x) = x*exp(3*Sum_{k>=1} A(x^k)/k). - Ilya Gutkovskiy, Mar 19 2018

Extensions

Extended by Christian G. Bower, Apr 15 1998