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!)
A272522 Number of set partitions of [n] into ten blocks with distinct sizes. 2
1906765806522767212441719098019963758016000000, 9707171378661360354248751771737997313536000000, 101439940907011215701899456014662071926451200000, 829726696136835328433485294068646178065075200000, 7898017947032824439221398664897536276307929600000 (list; graph; refs; listen; history; text; internal format)
OFFSET
55,1
LINKS
FORMULA
a(n) = n! * [x^n*y^10] 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, 10):
seq(a(n), n=55..65);
CROSSREFS
Column k=10 of A131632.
Sequence in context: A095482 A160678 A095484 * A227768 A095486 A095488
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 19 13:40 EDT 2024. Contains 371792 sequences. (Running on oeis4.)