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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A213048 Number of preferential arrangements of n labeled elements with repetitions allowed. 0
1, 1, 5, 31, 229, 1981, 19775, 224589, 2864901, 40591255, 632760105, 10765616885, 198543617119, 3945765358653, 84070841065937, 1911864488674531, 46222718892288645, 1183919151676806177, 32025836905529003471, 912372909851608715945, 27304698509111141688969 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,3

LINKS

Table of n, a(n) for n=0..20.

FORMULA

a(n) = Sum_{k=1..n} C(n+k-1,k)*a(n-k) for n>0, a(0) = 1.

a(n) = Sum_c(n) C(n+k1-1,k1) C(n-k1+k2-1,k2) C(n-k1-k2+k3-1,k3) ..., where Sum_c(n) denotes the sum over all compositions (ordered partitions) of n = k1 + k2 + ... .

EXAMPLE

For n=2 the a(2) = 5 solutions are (1,2), (1|2), (2|1), (1|1), (2|2).

MAPLE

a:= proc(n) option remember;

      `if`(n=0, 1, add (binomial(n+k-1, k)*a(n-k), k=1..n))

    end:

seq (a(n), n=0..25);

CROSSREFS

Cf. A000670.

Sequence in context: A001910 A052773 A062147 * A069321 A211179 A177797

Adjacent sequences:  A213045 A213046 A213047 * A213049 A213050 A213051

KEYWORD

nonn

AUTHOR

Thomas Wieder, Jun 03 2012

STATUS

approved

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 June 19 09:12 EDT 2013. Contains 226401 sequences.