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 A256554 #31 May 09 2018 09:56:57 %S A256554 1,1,1,1,1,1,1,1,2,1,1,1,2,1,1,1,1,1,3,2,2,1,2,1,3,2,2,1,3,1,1,1,1,4, %T A256554 2,4,1,5,1,1,1,1,1,1,4,3,4,1,7,1,1,1,2,2,1,1,1,1,5,3,6,2,9,1,2,1,3,4, %U A256554 1,1,1,1,1,1,5,3,6,2,12,1,2,1,4,1,6,2,2,1,2,1,1,1,2 %N A256554 Number T(n,k) of cycle types of degree-n permutations having the k-th smallest possible order; triangle T(n,k), n>=0, 1<=k<=A009490(n), read by rows. %C A256554 Sum_{k>=0} A256553(n,k)*T(n,k) = A181844(n). %H A256554 Alois P. Heinz, <a href="/A256554/b256554.txt">Rows n = 0..60, flattened</a> %e A256554 Triangle T(n,k) begins: %e A256554 1; %e A256554 1; %e A256554 1, 1; %e A256554 1, 1, 1; %e A256554 1, 2, 1, 1; %e A256554 1, 2, 1, 1, 1, 1; %e A256554 1, 3, 2, 2, 1, 2; %e A256554 1, 3, 2, 2, 1, 3, 1, 1, 1; %e A256554 1, 4, 2, 4, 1, 5, 1, 1, 1, 1, 1; %e A256554 1, 4, 3, 4, 1, 7, 1, 1, 1, 2, 2, 1, 1, 1; %e A256554 1, 5, 3, 6, 2, 9, 1, 2, 1, 3, 4, 1, 1, 1, 1, 1; %p A256554 b:= proc(n, i) option remember; `if`(n=0 or i=1, x, %p A256554 b(n, i-1)+(p-> add(coeff(p, x, t)*x^ilcm(t, i), %p A256554 t=1..degree(p)))(add(b(n-i*j, i-1), j=1..n/i))) %p A256554 end: %p A256554 T:= n->(p->seq((h->`if`(h=0, [][], h))(coeff(p, x, i)) %p A256554 , i=1..degree(p)))(b(n$2)): %p A256554 seq(T(n), n=0..12); %t A256554 b[n_, i_] := b[n, i] = If[n == 0 || i == 1, x, b[n, i - 1] + Function[p, Sum[Coefficient[p, x, t]*x^LCM[t, i], {t, 1, Exponent[p, x]}]][Sum[b[n - i*j, i - 1], {j, 1, n/i}]]]; T[n_] := Function[p, Table[Function[h, If[h == 0, {{}, {}}, h]][Coefficient[p, x, i]], {i, 1, Exponent[p, x]}]][b[n, n]]; Table[T[n], {n, 0, 12}] // Flatten (* _Jean-François Alcover_, Jan 23 2017, translated from Maple *) %Y A256554 Row sums give A000041. %Y A256554 Row lengths give A009490. %Y A256554 Columns k=1-9 give: A000012, A004526, A002264, A008642(n-4), A002266, A074752, A132270, A008643(n-8) for n>7, A008649(n-9) for n>8. %Y A256554 Last elements of rows give A074064. %Y A256554 Main diagonal gives A074761. %Y A256554 Cf. A181844, A256067, A256553. %K A256554 nonn,look,tabf %O A256554 0,9 %A A256554 _Alois P. Heinz_, Apr 01 2015