This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A274840 #9 May 15 2018 08:34:51 %S A274840 1,1,1,1,1,1,1,1,2,3,4,5,6,7,8,17,34,65,120,215,374,629,1641,3919, %T A274840 8849,19241,40707,84203,170229,503902,1407019,3746718,9600121, %U A274840 23815820,57408783,134592586,440661179,1383544922,4206645985,12456581554,36012285385 %N A274840 Number of set partitions of [n] such that the difference between each element and its block index is a multiple of seven. %H A274840 Alois P. Heinz, <a href="/A274840/b274840.txt">Table of n, a(n) for n = 0..874</a> %H A274840 Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a> %e A274840 a(8) = 2: 18|2|3|4|5|6|7, 1|2|3|4|5|6|7|8. %e A274840 a(9) = 3: 18|29|3|4|5|6|7, 1|29|3|4|5|6|7|8, 1|2|3|4|5|6|7|8|9. %e A274840 a(10) = 4: 18|29|3(10)|4|5|6|7, 1|29|3(10)|4|5|6|7|8, 1|2|3(10)|4|5|6|7|8|9, 1|2|3|4|5|6|7|8|9|(10). %p A274840 b:= proc(n, m, t) option remember; `if`(n=0, 1, %p A274840 add(`if`(irem(j-t, 7)=0, b(n-1, max(m, j), %p A274840 irem(t+1, 7)), 0), j=1..m+1)) %p A274840 end: %p A274840 a:= n-> b(n, 0, 1): %p A274840 seq(a(n), n=0..42); %t A274840 b[n_, m_, t_] := b[n, m, t] = If[n == 0, 1, Sum[If[Mod[j - t, 7] == 0, b[n - 1, Max[m, j], Mod[t + 1, 7]], 0], {j, 1, m + 1}]]; %t A274840 a[n_] := b[n, 0, 1]; %t A274840 Table[a[n], {n, 0, 42}] (* _Jean-François Alcover_, May 15 2018, after _Alois P. Heinz_ *) %Y A274840 Column k=7 of A274835. %K A274840 nonn %O A274840 0,9 %A A274840 _Alois P. Heinz_, Jul 08 2016