Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

Revision History for A268041

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

Showing all changes.
Table array: T(n,m) is the number of non-crossings matchings of curves embedded within an annulus with n exterior endpoints and m interior endpoints.
(history; published version)
#5 by Bruno Berselli at Mon Jan 25 04:12:05 EST 2016
STATUS

reviewed

approved

#4 by Joerg Arndt at Mon Jan 25 03:17:15 EST 2016
STATUS

proposed

reviewed

Discussion
Mon Jan 25
03:31
Michel Marcus: ok fine
#3 by Michel Marcus at Mon Jan 25 01:46:20 EST 2016
STATUS

editing

proposed

Discussion
Mon Jan 25
03:17
Joerg Arndt: One could enter a "tabf" version as well.  But I think this one is fine.
#2 by Michel Marcus at Mon Jan 25 00:49:27 EST 2016
NAME

allocated for Michel MarcusTable array: T(n,m) is the number of non-crossings matchings of curves embedded within an annulus with n exterior endpoints and m interior endpoints.

DATA

1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 4, 2, 3, 2, 3, 2, 4, 0, 0, 0, 0, 0, 0, 0, 0, 10, 5, 7, 3, 7, 3, 7, 5, 10, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 26, 14, 17, 8, 14, 8, 14, 8, 17, 14, 26, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 80, 42, 48, 24, 38, 20, 34, 20, 38, 24, 48, 42, 80

OFFSET

0,11

LINKS

Paul Drube and Puttipong Pongtanapaisan, <a href="https://cs.uwaterloo.ca/journals/JIS/VOL19/Drube/drube3.html">Annular Non-Crossing Matchings</a>, Journal of Integer Sequences, Vol. 19 (2016), #16.2.4.

PROG

(PARI) tnnk(n, k) = if (!n && !k, 1, sumdiv(gcd(n, k), d, eulerphi(d)*binomial((2*n+k)/d, n/d))/(2*n+k));

tnmk(n, m, k) = if (k==0, tnnk(n, 0)*tnnk(m, 0), k*sumdiv(gcd(k, gcd(n, m)), d, eulerphi(d)*binomial((2*n+k)/d, n/d)*binomial((2*m+k)/d, m/d))/((2*n+k)*(2*m+k)));

a(n, m) = {if ((n+m) % 2, return (0)); if (n<m, return (a(m, n))); sum(k=0, m, if (!((n-k)%2) && !((m-k)%2), tnmk((n-k)/2, (m-k)/2, k), 0)); }

CROSSREFS

Cf. A267998.

KEYWORD

allocated

nonn,tabl

AUTHOR

Michel Marcus, Jan 25 2016

STATUS

approved

editing

Discussion
Mon Jan 25
01:36
Michel Marcus: Should we get rid of the zeroes ? But then it would be a tabf.
#1 by Michel Marcus at Mon Jan 25 00:49:27 EST 2016
NAME

allocated for Michel Marcus

KEYWORD

allocated

STATUS

approved