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 A275429 #11 May 17 2018 03:11:54 %S A275429 1,1,2,2,11,2,167,2,1500,1206,16175,2,3486584,2,3188421,29226654, %T A275429 772458367,2,130880325103,2,4173951684174,623240762412,644066092301,2, %U A275429 220076136813712815,31580724696908,538897996103277,49207275464475052,44147498142028751570,2 %N A275429 Number of set partitions of [n] such that n is a multiple of each block size. %H A275429 Alois P. Heinz, <a href="/A275429/b275429.txt">Table of n, a(n) for n = 0..587</a> %H A275429 Wikipedia, <a href="https://en.wikipedia.org/wiki/Partition_of_a_set">Partition of a set</a> %F A275429 a(n) = n! * [x^n] exp(Sum_{d|n} x^d/d!) for n>0, a(0) = 1. %F A275429 a(n) = A275422(n,n). %F A275429 a(p) = 2 for p prime. %e A275429 a(4) = 11: 1234, 12|34, 12|3|4, 13|24, 13|2|4, 14|23, 1|23|4, 14|2|3, 1|24|3, 1|2|34, 1|2|3|4. %e A275429 a(5) = 2: 12345, 1|2|3|4|5. %p A275429 A:= proc(n, k) option remember; `if`(n=0, 1, add( %p A275429 `if`(j>n, 0, A(n-j, k)*binomial(n-1, j-1)), j= %p A275429 `if`(k=0, 1..n, numtheory[divisors](k)))) %p A275429 end: %p A275429 a:= n-> A(n$2): %p A275429 seq(a(n), n=0..30); %t A275429 A[n_, k_] := A[n, k] = If[n == 0, 1, Sum[If[j > n, 0, A[n - j, k]* Binomial[n - 1, j - 1]], {j, If[k == 0, Range[n], Divisors[k]]}]]; %t A275429 a[n_] := A[n, n]; %t A275429 Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, May 17 2018, translated from Maple *) %Y A275429 Main diagonal of A275422. %K A275429 nonn %O A275429 0,3 %A A275429 _Alois P. Heinz_, Jul 27 2016