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

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A059023 Triangle of Stirling numbers of order 4. 4
1, 1, 1, 1, 1, 35, 1, 126, 1, 336, 1, 792, 1, 1749, 5775, 1, 3718, 45045, 1, 7722, 231231, 1, 15808, 981981, 1, 32071, 3741738, 2627625, 1, 64702, 13307294, 35735700, 1, 130084, 45172842, 300179880, 1, 260984, 148417854, 2002016016, 1, 522937 (list; graph; refs; listen; history; internal format)
OFFSET

4,6

COMMENTS

The number of partitions of the set N, |N|=n, into k blocks, all of cardinality greater than or equal to 4. This is the 4-associated Stirling number of the second kind.

This is entered as a triangular array. The entries S_4(n,k) are zero for 4k>n, so these values are omitted. Initial entry in sequence is S_4(4,1).

Rows are of lengths 1,1,1,1,2,2,2,2,3,3,3,3,...

REFERENCES

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

A. E. Fekete, Apropos two notes on notation, Amer. Math. Monthly, 101 (1994), 771-778.

J. Riordan, An Introduction to Combinatorial Analysis, Wiley, 1958, p. 76.

FORMULA

S_r(n+1, k)=k S_r(n, k)+binomial(n, r-1)S_r(n-r+1, k-1) for this sequence, r=4 G.f.: sum(S_r(n, k)u^k ((t^n)/(n!)), n=0..infty, k=0..infty)=exp(u(e^t-sum(t^i/i!, i=0..r-1)))

EXAMPLE

There are 35 ways of partitioning a set N of cardinality 8 into 2 blocks each of cardinality at least 4, so S_4(8,2)=35.

MATHEMATICA

s4[n_, k_] := k*s4[n-1, k] + Binomial[n-1, 3]*s4[n-4, k-1]; s4[n_, k_] /; 4 k > n = 0; s4[_, k_ /; k <= 0] = 0; s4[0, 0] = 1;

Flatten[Table[s4[n, k], {n, 4, 20}, {k, 1, Floor[n/4]}]][[1 ;; 42]] (* From Jean-François Alcover, Jun 16 2011 *)

CROSSREFS

Cf. A008299, A059022, A059024, A059025.

Sequence in context: A104785 A028847 A176199 * A061045 A202650 A037934

Adjacent sequences:  A059020 A059021 A059022 * A059024 A059025 A059026

KEYWORD

nonn,tabf,nice

AUTHOR

Barbara Haas Margolius (margolius(AT)math.csuohio.edu), Dec 14 2000

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 16 10:53 EST 2012. Contains 205904 sequences.