[go: up one dir, main page]

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!)
Revision History for A216499 (Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A216499 The maximum possible number of rooted triples consistent with any galled-tree (level-1 phylogenetic network) containing exactly n leaves.
(history; published version)
#21 by N. J. A. Sloane at Sat Jan 19 04:15:43 EST 2019
REFERENCES

J. Byrka, P. Gawrychowski, K. T. Huber and S. Kelk. Worst-case optimal approximation algorithms for maximizing triplettriple consistency within phylogenetic networks. Journal of Discrete Algorithms, Vol. 8, Number 1, pp. 65-75, 2010.

Discussion
Sat Jan 19 04:15
OEIS Server: https://oeis.org/edit/global/2799
#20 by N. J. A. Sloane at Sat Jan 19 04:14:58 EST 2019
NAME

The maximum possible number of rooted tripletstriples consistent with any galled-tree (level-1 phylogenetic network) containing exactly n leaves.

Discussion
Sat Jan 19 04:14
OEIS Server: https://oeis.org/edit/global/2798
#19 by Alois P. Heinz at Mon Oct 24 08:41:08 EDT 2016
STATUS

proposed

approved

#18 by Jean-François Alcover at Mon Oct 24 08:08:24 EDT 2016
STATUS

editing

proposed

#17 by Jean-François Alcover at Mon Oct 24 08:08:20 EDT 2016
MATHEMATICA

a[0] = 0; a[n_] := a[n] = Max[Table[Binomial[i, 3] + 2*Binomial[i, 2]*(n-i) + i*Binomial[n-i, 2] + a[n-i], {i, 1, n}]]; Table[a[n], {n, 0, 70}] (* Jean-François Alcover, Oct 24 2016 *)

STATUS

approved

editing

#16 by Alois P. Heinz at Thu Jan 28 18:40:23 EST 2016
STATUS

editing

approved

#15 by Alois P. Heinz at Thu Jan 28 18:40:21 EST 2016
LINKS

Alois P. Heinz, <a href="/A216499/b216499.txt">Table of n, a(n) for n = 0..1000</a>

MAPLE

a:= proc(n) option remember; `if`(n=0, 0, max(seq(

binomial(i, 3) +2*binomial(i, 2)*(n-i)+

i*binomial(n-i, 2) + a(n-i), i=1..n)))

end:

seq(a(n), n=0..70); # Alois P. Heinz, Jan 28 2016

STATUS

approved

editing

#14 by Alois P. Heinz at Thu Jan 28 18:25:52 EST 2016
STATUS

editing

approved

#13 by Alois P. Heinz at Thu Jan 28 18:25:45 EST 2016
FORMULA

a(n) = max_{1 <= <=i<=n} [C(i,3) +2*C(i,2)*(n-i) +i*C(n-i,2) +a(n-i <= )] for n}>0.

[(i choose 3) + 2 (i choose 2) (n-i) + i ((n-i) choose 2) + a(n-i)]

for n > 0.

STATUS

approved

editing

#12 by T. D. Noe at Mon Sep 10 12:09:10 EDT 2012
STATUS

editing

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 August 29 08:01 EDT 2024. Contains 375510 sequences. (Running on oeis4.)