[go: up one dir, main page]

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!)
Revision History for A287670 (Underlined text is an addition; strikethrough text is a deletion.)

Showing all changes.
A287670 Number of set partitions of [n] such that j is member of block b only if b = 1 or at least one of j-1, ..., j-7 is member of a block >= b-1.
(history; published version)
#9 by Michel Marcus at Sun May 27 10:33:25 EDT 2018
STATUS

reviewed

approved

#8 by Joerg Arndt at Sun May 27 10:18:07 EDT 2018
STATUS

proposed

reviewed

#7 by Jean-François Alcover at Sun May 27 09:26:51 EDT 2018
STATUS

editing

proposed

#6 by Jean-François Alcover at Sun May 27 09:26:48 EDT 2018
MATHEMATICA

b[n_, l_] := b[n, l] = If[n == 0, 1, Sum[b[n - 1, Append[Table[Max[l[[i]], j], {i, 2, Length[l]}], j]], {j, 1, l[[1]] + 1}]];

a[n_] := b[n, Table[0, 7]];

Table[a[n], {n, 0, 20}] (* Jean-François Alcover, May 27 2018, from Maple *)

STATUS

approved

editing

#5 by Alois P. Heinz at Mon May 29 20:43:12 EDT 2017
STATUS

editing

approved

#4 by Alois P. Heinz at Mon May 29 20:43:08 EDT 2017
LINKS

Alois P. Heinz, <a href="/A287670/b287670.txt">Table of n, a(n) for n = 0..37</a>

STATUS

approved

editing

#3 by Alois P. Heinz at Mon May 29 17:37:24 EDT 2017
STATUS

editing

approved

#2 by Alois P. Heinz at Mon May 29 17:36:03 EDT 2017
NAME

allocated for Alois P. Heinz

Number of set partitions of [n] such that j is member of block b only if b = 1 or at least one of j-1, ..., j-7 is member of a block >= b-1.

DATA

1, 1, 2, 5, 15, 52, 203, 877, 4140, 21147, 115974, 678434, 4209827, 27578206, 189954361, 1370870811, 10334533723, 81166980407, 662588540048, 5610196619724, 49177794178940, 445536788068643, 4165402700226511, 40131393651398259, 397935154986242021

OFFSET

0,3

LINKS

Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a>

FORMULA

a(n) = A287641(n,7).

a(n) = A000110(n) for n <= 9.

EXAMPLE

a(10) = 115974 = 115975 - 1 = A000110(10) - 1 counts all set partitions of [10] except: 13456789|2|(10).

MAPLE

b:= proc(n, l) option remember; `if`(n=0, 1, add(b(n-1,

[seq(max(l[i], j), i=2..nops(l)), j]), j=1..l[1]+1))

end:

a:= n-> b(n, [0$7]):

seq(a(n), n=0..20);

CROSSREFS

Column k=7 of A287641.

Cf. A000110.

KEYWORD

allocated

nonn

AUTHOR

Alois P. Heinz, May 29 2017

STATUS

approved

editing

#1 by Alois P. Heinz at Mon May 29 15:12:17 EDT 2017
NAME

allocated for Alois P. Heinz

KEYWORD

allocated

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 September 1 04:03 EDT 2024. Contains 375575 sequences. (Running on oeis4.)