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 A067231 #18 Mar 23 2017 10:23:22 %S A067231 1,1,1,3,1,6,1,15,43,43,1,595,1,430,6007,25455,1,92379,1,1679601, %T A067231 1385671,58787,1,163809451,701149021,742901,414315331,13675080331,1, %U A067231 404155466746,1,1489913284351,145862174641,129644791,278607172289161,1851800127304981,1 %N A067231 Number of Young tableaux with n=i*j cells and type i*j matrices with i>=j. %C A067231 a(p) = 1 for prime p. - _Alois P. Heinz_, Jul 25 2012 %H A067231 Alois P. Heinz, <a href="/A067231/b067231.txt">Table of n, a(n) for n = 1..350</a> %F A067231 a(n) = number of ways to arrange the numbers 1, 2, .., n=i*j in i*j matrices so that each row and each column is increasing. Here i and j satisfy i >= j. %F A067231 a(n) = n! * Sum_{i|n, i>=sqrt(n)} Product_{k=0..n/i-1} k!/(i+k)!. - _Alois P. Heinz_, Jul 25 2012 %p A067231 with(numtheory): %p A067231 a:= n-> n!*add(mul(k!/(i+k)!, k=0..n/i-1), %p A067231 i=select(d-> is(d>=sqrt(n)), divisors(n))): %p A067231 seq(a(n), n=1..40); # _Alois P. Heinz_, Jul 25 2012 %t A067231 a[n_] := n!*Sum[Product[k!/(i+k)!, {k, 0, n/i-1}], {i, Select[Divisors[n], # >= Sqrt[n]&]}]; Table[a[n], {n, 1, 40}] (* _Jean-François Alcover_, Mar 23 2017, translated from Maple *) %Y A067231 Cf. A000085, A060854, A067228. %K A067231 easy,nonn %O A067231 1,4 %A A067231 _Naohiro Nomoto_, Feb 20 2002