[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

Revision History for A187770 (Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Decimal expansion of Otter's asymptotic constant beta for the number of rooted trees.
(history; published version)
#33 by Alois P. Heinz at Fri Sep 22 16:04:08 EDT 2023
STATUS

proposed

approved

#32 by Michael De Vlieger at Fri Sep 22 15:55:11 EDT 2023
STATUS

editing

proposed

#31 by Michael De Vlieger at Fri Sep 22 15:55:06 EDT 2023
LINKS

Amirmohammad Farzaneh, Mihai-Alin Badiu, and Justin P. Coon, <a href="https://arxiv.org/abs/2309.09779">On Random Tree Structures, Their Entropy, and Compression</a>, arXiv:2309.09779 [cs.IT], 2023.

STATUS

approved

editing

#30 by Michael De Vlieger at Mon Feb 20 12:27:45 EST 2023
STATUS

reviewed

approved

#29 by Joerg Arndt at Mon Feb 20 11:22:07 EST 2023
STATUS

proposed

reviewed

#28 by Michel Marcus at Mon Feb 20 10:49:21 EST 2023
STATUS

editing

proposed

#27 by Michel Marcus at Mon Feb 20 10:49:18 EST 2023
LINKS

Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/RootedTree.html">RootedTreeRooted Tree</a>

STATUS

approved

editing

#26 by Vaclav Kotesovec at Wed Sep 24 08:18:50 EDT 2014
STATUS

proposed

approved

#25 by Jean-François Alcover at Wed Sep 24 08:05:44 EDT 2014
STATUS

editing

proposed

#24 by Jean-François Alcover at Wed Sep 24 08:05:22 EDT 2014
MATHEMATICA

digits = 87; max = 250; s[n_, k_] := s[n, k] = a[n+1-k] + If[n < 2*k, 0, s[n-k, k]]; a[1] = 1; a[n_] := a[n] = Sum[a[k]*s[n-1, k]*k, {k, 1, n-1}]/(n-1); A[x_] := Sum[a[k]*x^k, {k, 0, max}]; APrime[x_] := Sum[k*a[k]*x^(k-1), {k, 0, max}]; eq = Log[c] == 1 + Sum[A[c^(-k)]/k, {k, 2, max}]; alpha = c /. FindRoot[eq, {c, 3}, WorkingPrecision -> digits+5]; b = Sqrt[(1 + Sum[APrime[alpha^-k]/alpha^k, {k, 2, max}])/(2*Pi)]; RealDigits[b, 10, digits] // First (* _Jean-François Alcover_, Sep 24 2014 *)

STATUS

approved

editing

Discussion
Wed Sep 24
08:05
Jean-François Alcover: Sorry, I forgot to sign