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!)
A270502 Sum of the sizes of the tenth blocks in all set partitions of {1,2,...,n}. 2
1, 57, 1839, 44346, 891892, 15848311, 257647088, 3921554995, 56796169899, 792102157717, 10734723141617, 142380931674179, 1858965371935248, 24006134113802346, 307860388231938976, 3934302726222970593, 50254089923100713719, 643301179860716506788 (list; graph; refs; listen; history; text; internal format)
OFFSET
10,2
LINKS
MAPLE
b:= proc(n, m) option remember; `if`(n=0, [1, 0],
add((p->`if`(j<11, [p[1], p[2]+p[1]*x^j], p))(
b(n-1, max(m, j))), j=1..m+1))
end:
a:= n-> coeff(b(n, 0)[2], x, 10):
seq(a(n), n=10..30);
MATHEMATICA
b[n_, m_] := b[n, m] = If[n == 0, {1, 0}, Sum[Function[p, If[j < 11, {p[[1]], p[[2]] + p[[1]]*x^j}, p]][b[n - 1, Max[m, j]]], {j, 1, m + 1}]];
a[n_] := Coefficient[b[n, 0][[2]], x, 10];
Table[a[n], {n, 10, 30}] (* Jean-François Alcover, May 27 2018, translated from Maple *)
CROSSREFS
Column p=10 of A270236.
Sequence in context: A282932 A228259 A229407 * A285238 A011812 A226848
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Mar 18 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 17 20:17 EDT 2024. Contains 371767 sequences. (Running on oeis4.)