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!)
A274837 Number of set partitions of [n] such that the difference between each element and its block index is a multiple of four. 2

%I #9 May 15 2018 08:34:29

%S 1,1,1,1,1,2,3,4,5,11,22,41,72,191,459,1033,2209,6696,18777,49526,

%T 124011,419203,1329966,4009931,11544970,43203329,152247581,511143253,

%U 1644388769,6707557342,25952578959,95992345048,340793163873,1501194339387,6305017609678

%N Number of set partitions of [n] such that the difference between each element and its block index is a multiple of four.

%H Alois P. Heinz, <a href="/A274837/b274837.txt">Table of n, a(n) for n = 0..768</a>

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

%e a(7) = 4: 15|26|37|4, 1|26|37|4|5, 1|2|37|4|5|6, 1|2|3|4|5|6|7.

%e a(8) = 5: 15|26|37|48, 1|26|37|48|5, 1|2|37|48|5|6, 1|2|3|48|5|6|7, 1|2|3|4|5|6|7|8.

%e a(9) = 11: 159|26|37|48, 15|26|37|48|9, 19|26|37|48|5, 1|26|37|48|59, 19|2|37|48|5|6, 1|2|37|48|59|6, 19|2|3|48|5|6|7, 1|2|3|48|59|6|7, 19|2|3|4|5|6|7|8, 1|2|3|4|59|6|7|8, 1|2|3|4|5|6|7|8|9.

%p b:= proc(n, m, t) option remember; `if`(n=0, 1,

%p add(`if`(irem(j-t, 4)=0, b(n-1, max(m, j),

%p irem(t+1, 4)), 0), j=1..m+1))

%p end:

%p a:= n-> b(n, 0, 1):

%p seq(a(n), n=0..35);

%t b[n_, m_, t_] := b[n, m, t] = If[n == 0, 1, Sum[If[Mod[j - t, 4] == 0, b[n - 1, Max[m, j], Mod[t + 1, 4]], 0], {j, 1, m + 1}]];

%t a[n_] := b[n, 0, 1];

%t Table[a[n], {n, 0, 35}] (* _Jean-François Alcover_, May 15 2018, after _Alois P. Heinz_ *)

%Y Column k=4 of A274835.

%K nonn

%O 0,6

%A _Alois P. Heinz_, Jul 08 2016

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 25 07:53 EDT 2024. Contains 371964 sequences. (Running on oeis4.)