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!)
A132963 Total number of distinct block sizes in all partitions of [n]. 7
1, 2, 8, 25, 102, 439, 2067, 10406, 56754, 328257, 2015818, 13067366, 89192170, 638321285, 4779442602, 37332643831, 303635437532, 2565592977205, 22483754207839, 204013083946460, 1913880812797792, 18536832515581167, 185130415180288134, 1904280138346826637 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
E.g.f.: exp(exp(x)-1)*Sum_{k>0} (1-exp(-x^k/k!)).
MAPLE
b:= proc(n, i, c) option remember; `if`(n=0, c,
`if`(i<1, 0, add(b(n-j*i, i-1, c+signum(j))*
combinat[multinomial](n, n-i*j, i$j)/j!, j=0..n/i)))
end:
a:= n-> b(n$2, 0):
seq(a(n), n=1..30); # Alois P. Heinz, Jan 06 2022
MATHEMATICA
Rest[ Range[0, 23]! CoefficientList[ Series[ Exp[ Exp[x] - 1] Sum[1 - Exp[ -x^k/k! ], {k, 30}], {x, 0, 23}], x]] (* Robert G. Wilson v, Sep 13 2007 *)
CROSSREFS
Sequence in context: A281338 A036367 A115256 * A122404 A150670 A150671
KEYWORD
easy,nonn
AUTHOR
Vladeta Jovovic, Sep 06 2007
EXTENSIONS
More terms from Robert G. Wilson v, Sep 13 2007
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 23 09:48 EDT 2024. Contains 371905 sequences. (Running on oeis4.)