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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A005651 Sum of multinomial coefficients.
(Formerly M2870)
30
1, 1, 3, 10, 47, 246, 1602, 11481, 95503, 871030, 8879558, 98329551, 1191578522, 15543026747, 218668538441, 3285749117475, 52700813279423, 896697825211142, 16160442591627990, 307183340680888755, 6147451460222703502 (list; graph; refs; listen; history; internal format)
OFFSET

0,3

COMMENTS

This is the total number of hierarchies of n labeled elements arranged on 1 to n levels. A distribution of elements onto levels is "hierarchical" if a level l+1 contains <= elements than level l. Thus for n=4 the arrangement {1,2}:{3}{4} is not allowed. See also A140585. Examples: Let the colon ":" separate two consecutive levels l and l+1. Then n=2 --> 3: {1}{2}, {1}:{2}, {2}:{1}, n=3 --> 10: {1}{2}{3}, {1}{2}:{3}, {3}{1}:{2}, {2}{3}:{1}, {1}:{2}:{3}, {3}:{1}:{2}, {2}:{3}:{1}, {1}:{3}:{2}, {2}:{1}:{3}, {3}:{2}:{1}. - Thomas Wieder (thomas.wieder(AT)t-online.de), May 17 2008

n identical objects are painted by dipping them into a long row of cans of paint of distinct colors. Begining with the first can and not skipping any cans k, 1<=k<=n, objects are dipped (painted) and not more objects are dipped into any subsequent can than were dipped into the previous can. The painted objects are then linearly ordered. [From Geoffrey Critzer (critzer.geoffrey(AT)usd443.org), Jun 08 2009]

REFERENCES

Abramowitz and Stegun, Handbook, p. 831, column labeled "M_1".

L. Comtet, Advanced Combinatorics, Reidel, 1974, p. 126.

N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

LINKS

T. D. Noe, Table of n, a(n) for n=0..100

M. Abramowitz and I. A. Stegun, eds., Handbook of Mathematical Functions, National Bureau of Standards, Applied Math. Series 55, Tenth Printing, 1972 [alternative scanned copy].

FORMULA

E.g.f.: 1 / Product (1 - x^k/k!).

a(n) = Sum_{k=1..n} (n-1)!/(n-k)!*b(k)*a(n-k), where b(k) = Sum_{d divides k} d*d!^(-k/d). - Vladeta Jovovic (vladeta(AT)eunet.rs), Oct 14 2002

EXAMPLE

For n=3, say the first three cans in the row contain red, white, and blue paint respectively. The objects can be painted r,r,r or r,r,w or r,w,b and then linearly ordered in 1 + 3 + 6 = 10 ways. [From Geoffrey Critzer (critzer.geoffrey(AT)usd443.org), Jun 08 2009]

MAPLE

A005651b := proc(k) add( d/(d!)^(k/d), d=numtheory[divisors](k)) ; end proc:

A005651 := proc(n) option remember; local k ; if n <= 1 then 1; else (n-1)!*add(A005651b(k)*procname(n-k)/(n-k)!, k=1..n) ; end if; end proc:

seq(A005651(k), k=0..10) ; # R. J. Mathar, Jan 03 2011

MATHEMATICA

Table[Total[n!/Map[Function[n, Apply[Times, n! ]], Partitions[n]]], {n, 0, 20}] [From Geoffrey Critzer (critzer.geoffrey(AT)usd443.org), Jun 08 2009]

CROSSREFS

Cf. A036038, A007837.

Cf. A140585.

Sequence in context: A167999 A000849 A092429 * A105748 A140964 A005921

Adjacent sequences:  A005648 A005649 A005650 * A005652 A005653 A005654

KEYWORD

nonn,easy,nice

AUTHOR

Simon Plouffe (simon.plouffe(AT)gmail.com)

EXTENSIONS

More terms from Antonio G. Astudillo (afg_astudillo(AT)lycos.com), Mar 29 2003

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 12 18:43 EST 2012. Contains 205432 sequences.