login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A137591 Number of parenthesizings of products formed by n factors assuming noncommutativity and nonassociativity. 3
1, 1, 6, 54, 660, 10260, 194040, 4326840, 111177360, 3234848400, 105135861600, 3775206204000 (list; graph; refs; listen; history; internal format)
OFFSET

1,3

COMMENTS

See the double factorials A001147 for the case when the product is commutative and nonassociative.

Another interpretation of A137591 is possible in terms of dendrograms. A001147 gives the number labeled, non-ranked, binary dendrograms, so called L-NR dendrograms. A137591 gives the number of L-NR dendrograms if the order of objects counts within a dendrogram class.

See the Murtagh paper cited in A001147 for more on dendrograms.

See also: Dimitar L. Vandev, Random Dendrograms. Statistical Data Analysis, Proceedings SDA-95, SDA-96, pp.186-196 (https://www.fmi.uni-sofia.bg/fmi/statist/Personal/Vandev/papers/dendro.pdf)

Vandev's formula (1) is our recurrence for A137591, but it seems that Vandev meant a(n) = sum(binomial(n-1,k)*a(k)*a(n-k),k=1..n-1) with a(1)=1, a(2)=1. This recurrence gives the double factorials.

FORMULA

a(n) = sum(binomial(n,k)*a(k)*a(n-k),k=1..n-1) with a(1)=1, a(2)=1. e.g.f.=-(z-1)/(2z^2+1-4z)^1/2.

E.g.f.: -(x-1)/sqrt(1-4*x+2*x^2). [From Thomas Wieder (thomas.wieder(AT)t-online.de), May 02 2009]

EXAMPLE

a(4)=54 because we have

w(x(yz)), w((yz),x), (x(yz))w, ((yz),x)w,

w(y(xz)), w((xz),y), (y(xz))w, ((xz),y)w,

w(z(xy)), w((xy),z), (z(xy))w, ((xy),z)w,

x(w(yz)), w((yz),x), (x(yz))w, ((yz),y)w,

x(y(wz)), x((wz)y), (y(wz))x, ((wz)y)x,

x(z(wy)), x((wy)z), (z(wy))x, ((wy)z)x,

y(w(xz)), y(w(xz)), (w(xz))y, ((xz)w)y,

y(x(wz)), y(x(wz)), (x(wz))y, ((wz)x)y,

y(z(wx)), y(z(wx)), (z(wx))y, ((wx)z)y,

z(w(xy)), z((xy)w), (w(xy))z, ((xy)w)z,

z(x(wy)), z((wy)x), (x(wy))z, ((wy)x)z,

z(y(wx)), z((wx)y), (y(wx))z, ((wx)y)z,

(wx)(yz), (yz)(wx)

(wy)(xz), (xz)(wy)

(wz)(xy), (xy)(wz)

and 12*4+3*2=48+6=54.

MAPLE

H(1):=1; H(2):=1; for n from 3 to 12 do H(n):=0: for k from 1 to n-1 do H(n):= H(n)+binomial(n, k)*H(k)*H(n-k) od: print(H(n)); od:

CROSSREFS

Cf. A001147, A137051.

Sequence in context: A158831 A034001 A084062 * A072034 A167571 A138434

Adjacent sequences:  A137588 A137589 A137590 * A137592 A137593 A137594

KEYWORD

nonn

AUTHOR

Thomas Wieder (thomas.wieder(AT)t-online.de), Jan 28 2008, Feb 07 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 16:00 EST 2012. Contains 206050 sequences.