login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A055278 Number of rooted trees with n nodes and 3 leaves. 3
1, 3, 8, 18, 35, 62, 103, 161, 241, 348, 487, 664, 886, 1159, 1491, 1890, 2364, 2922, 3574, 4329, 5198, 6192, 7322, 8600, 10039, 11651, 13450, 15450, 17665, 20110, 22801, 25753, 28983, 32508, 36345, 40512, 45028, 49911, 55181, 60858, 66962, 73514, 80536 (list; graph; refs; listen; history; text; internal format)
OFFSET
4,2
LINKS
FORMULA
G.f.: x^4*(x^3+x^2+1)/((1-x^2)*(1-x^3)*(1-x)^3) (conjectured). - Ralf Stephan, Mar 07 2004
a(n) = A055364(4 - n) for all n in Z. - Michael Somos, Jun 29 2015
EXAMPLE
G.f. = x^4 + 3*x^5 + 8*x^6 + 18*x^7 + 35*x^8 + 62*x^9 + 103*x^10 + ...
MATHEMATICA
a[ n_] := Quotient[ 3 n^4 - 20 n^3 + 54 n^2 - 60 n + 32, 144];
PROG
(PARI) {a(n) = (3*n^4 - 20*n^3 + 54*n^2 - 60*n + 32) \ 144}; /* Michael Somos, Jun 29 2015 */
(PARI) {a(n) = if( n<0, n = -1-n; polcoeff( (1 + x + x^3) / ((1 - x)^3 * (1 - x^2) * (1 - x^3)) + x * O(x^n), n), polcoeff( x^4 * (1 + x^2 + x^3) / ((1 - x)^3 * (1 - x^2) * (1 - x^3)) + x * O(x^n), n))}; /* Michael Somos, Jun 29 2015 */
CROSSREFS
Column 3 of A055277.
Cf. A055364.
Sequence in context: A212589 A367188 A081489 * A293349 A036628 A004035
KEYWORD
nonn,easy
AUTHOR
Christian G. Bower, May 09 2000
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 24 05:49 EDT 2024. Contains 371918 sequences. (Running on oeis4.)