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!)
A255517 Number A(n,k) of rooted identity trees with n nodes and k-colored non-root nodes; square array A(n,k), n>=0, k>=0, read by antidiagonals. 17
0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 2, 1, 0, 0, 1, 3, 5, 2, 0, 0, 1, 4, 12, 18, 3, 0, 0, 1, 5, 22, 64, 66, 6, 0, 0, 1, 6, 35, 156, 363, 266, 12, 0, 0, 1, 7, 51, 310, 1193, 2214, 1111, 25, 0, 0, 1, 8, 70, 542, 2980, 9748, 14043, 4792, 52, 0, 0, 1, 9, 92, 868, 6273, 30526, 82916, 91857, 21124, 113, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,13
COMMENTS
From Vaclav Kotesovec, Feb 24 2015: (Start)
k Limit n->infinity A(n,k)^(1/n)
1 2.517540352632003890795354598463447277335981266803... = A246169
2 5.249032491228170579164952216184309265343086337648... = A246312
3 7.969494030514425004826375511986491746399264355846...
4 10.688492754969652458452048798468242930479212456958...
5 13.407087472537747579787047072702638639945914705837...
6 16.125529360448558670505097146631763969697822205298...
7 18.843901825822305757579605844910623225182677164912...
8 21.562238702430237066018783115405680041128676137631...
9 24.280555694806692616578932533497629224907619468796...
10 26.998860838916733933849490675388336975888308433826...
100 271.64425688361559470587959030374804709717287744789...
Conjecture: For big k the limit asymptotically approaches k*exp(1).
(End)
LINKS
EXAMPLE
A(3,2) = 5:
o o o o o
| | | | / \
1 1 2 2 1 2
| | | |
1 2 1 2
Square array A(n,k) begins:
0, 0, 0, 0, 0, 0, 0, ...
1, 1, 1, 1, 1, 1, 1, ...
0, 1, 2, 3, 4, 5, 6, ...
0, 1, 5, 12, 22, 35, 51, ...
0, 2, 18, 64, 156, 310, 542, ...
0, 3, 66, 363, 1193, 2980, 6273, ...
0, 6, 266, 2214, 9748, 30526, 77262, ...
MAPLE
with(numtheory):
A:= proc(n, k) option remember; `if`(n<2, n, add(A(n-j, k)*add(
k*A(d, k)*d*(-1)^(j/d+1), d=divisors(j)), j=1..n-1)/(n-1))
end:
seq(seq(A(n, d-n), n=0..d), d=0..14);
MATHEMATICA
A[n_, k_] := A[n, k] = If[n<2, n, Sum[A[n-j, k]*Sum[k*A[d, k]*d*(-1)^(j/d + 1), {d, Divisors[j]}], {j, 1, n-1}]/(n-1)]; Table[Table[A[n, d-n], {n, 0, d}], {d, 0, 14}] // Flatten (* Jean-François Alcover, Feb 22 2016, after Alois P. Heinz *)
CROSSREFS
Rows n=0-4 give: A000004, A000012, A001477, A000326, 2*A051662(k-1) for k>0.
Lower diagonal gives A255523.
Sequence in context: A127840 A017837 A145153 * A188816 A168312 A076837
KEYWORD
nonn,tabl
AUTHOR
Alois P. Heinz, Feb 24 2015
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 19 08:45 EDT 2024. Contains 371782 sequences. (Running on oeis4.)