login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A368502
Number of partitions of an n-set into blocks of size <= sqrt(n).
2
1, 1, 1, 1, 10, 26, 76, 232, 764, 12644, 61136, 312676, 1680592, 9467680, 55704104, 341185496, 6631556521, 49294051497, 380306658250, 3039453750685, 25120541332271, 214363100120051, 1885987611214092, 17085579637664715, 159185637725413675, 3282701194678476257
OFFSET
0,5
FORMULA
a(n) = n! * [x^n] exp( Sum_{1 <= j <= sqrt(n)} x^j / j! ).
MATHEMATICA
Table[n! SeriesCoefficient[Exp[Sum[x^j/j!, {j, 1, Floor[Sqrt[n]]}]], {x, 0, n}], {n, 0, 25}]
CROSSREFS
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Dec 27 2023
STATUS
approved