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!)
A245123 Number of n-node rooted identity trees with thinning limbs and root outdegree (branching factor) 4. 2
2, 3, 9, 20, 46, 94, 202, 412, 850, 1719, 3483, 6987, 14026, 27990, 55830, 111022, 220589, 437451, 866898, 1715821, 3393973, 6708016, 13251455, 26163174, 51635765, 101868226, 200908954, 396129137, 780868821, 1538971204, 3032575428, 5974874666, 11770477038 (list; graph; refs; listen; history; text; internal format)
OFFSET
11,1
LINKS
EXAMPLE
a(11) = 2:
: o o :
: /( )\ / ( ) \ :
: o o o o o o o o :
: | | | ( ) | | :
: o o o o o o o :
: | | | | :
: o o o o :
: | :
: o :
MAPLE
b:= proc(n, i, h, v) option remember; `if`(n=0, `if`(v=0, 1, 0),
`if`(i<1 or v<1 or n<v, 0, add(binomial(A(i, min(i-1, h)), j)
*b(n-i*j, i-1, h, v-j), j=0..min(n/i, v))))
end:
A:= proc(n, k) option remember;
`if`(n<2, n, add(b(n-1$2, j$2), j=1..min(k, n-1)))
end:
a:= n-> b(n-1$2, 4$2):
seq(a(n), n=11..50);
CROSSREFS
Column k=4 of A245120.
Sequence in context: A121908 A231368 A369517 * A097075 A036673 A111189
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Jul 12 2014
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 16 14:17 EDT 2024. Contains 371740 sequences. (Running on oeis4.)