login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A272521 Number of set partitions of [n] into nine blocks with distinct sizes. 2
65191584694745586153436251091200000, 299881289595829696305806755019520000, 2847357699192726409368266158771200000, 21355182743945448070261996190784000000, 188337379875526275760583438815706112000, 1546608042571126104473205339509472000000 (list; graph; refs; listen; history; text; internal format)
OFFSET
45,1
LINKS
FORMULA
a(n) = n! * [x^n*y^9] Product_{n>=1} (1+y*x^n/n!).
MAPLE
b:= proc(n, i, t) option remember; `if`(t>i or t*(t+1)/2>n
or t*(2*i+1-t)/2<n, 0, `if`(n=0, 1, b(n, i-1, t)+
`if`(i>n, 0, b(n-i, i-1, t-1)*binomial(n, i))))
end:
a:= n-> b(n$2, 9):
seq(a(n), n=45..55);
CROSSREFS
Column k=9 of A131632.
Sequence in context: A095462 A115543 A219323 * A361899 A095464 A255360
KEYWORD
nonn
AUTHOR
Alois P. Heinz, May 01 2016
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)