cp's OEIS Frontend

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.

A259324 Infinite square array read by antidiagonals: T(n,k) = number of ways of partitioning numbers <= n into k parts (n >= 0, k >= 1).

This page as a plain text file.
%I A259324 #24 Jul 19 2024 11:15:31
%S A259324 1,1,2,1,2,3,1,2,4,4,1,2,4,6,5,1,2,4,7,9,6,1,2,4,7,11,12,7,1,2,4,7,12,
%T A259324 16,16,8,1,2,4,7,12,18,23,20,9,1,2,4,7,12,19,27,31,25,10,1,2,4,7,12,
%U A259324 19,29,38,41,30,11,1,2,4,7,12,19,30,42,53,53,36,12,1,2,4,7,12,19,30,44,60,71,67,42,13,1,2,4,7,12,19,30,45,64,83,94,83,49,14,1,2
%N A259324 Infinite square array read by antidiagonals: T(n,k) = number of ways of partitioning numbers <= n into k parts (n >= 0, k >= 1).
%H A259324 E. Fix and J. L. Hodges, Jr., <a href="http://www.jstor.org/stable/2236885">Significance probabilities of the Wilcoxon test</a>, Annals Math. Stat., 26 (1955), 301-312. See Table I.
%H A259324 E. Fix and J. L. Hodges, <a href="/A000601/a000601.pdf">Significance probabilities of the Wilcoxon test</a>, Annals Math. Stat., 26 (1955), 301-312. [Annotated scanned copy]
%F A259324 T(u,m) = T(u,m-1)+T(u-m,m), with initial conditions T(0,m)=1, T(m,1)=u+1.
%e A259324 The first few antidiagonals are:
%e A259324 1,
%e A259324 1,2,
%e A259324 1,2,3,
%e A259324 1,2,4,4,
%e A259324 1,2,4,6,5,
%e A259324 1,2,4,7,9,6,
%e A259324 1,2,4,7,11,12,7,
%e A259324 1,2,4,7,12,16,16,8,
%e A259324 ...
%p A259324 A259324 := proc(u,m)
%p A259324     option remember;
%p A259324     if u = 0 then
%p A259324         1;
%p A259324     elif u < 0 then
%p A259324         0;
%p A259324     elif m = 1 then
%p A259324         u+1 ;
%p A259324     else
%p A259324         procname(u,m-1)+procname(u-m,m) ;
%p A259324     end if;
%p A259324 end proc:
%p A259324 for d from 1 to 15 do
%p A259324     for m from d to 1 by -1 do
%p A259324         printf("%d,",A259324(d-m,m)) ;
%p A259324     end do:
%p A259324 end do: # _R. J. Mathar_, Jul 14 2015
%t A259324 T[0, _] = 1; T[u_ /; u > 0, m_ /; m > 1] := T[u, m] = T[u, m - 1] + T[u - m, m]; T[u_, 1] := u + 1; T[_, _] = 0;
%t A259324 Table[T[u - m, m], {u, 0, 14}, {m, u, 1, -1}] // Flatten (* _Jean-François Alcover_, Apr 05 2020 *)
%Y A259324 Columns give A002620, A000601, A002621, A002622.
%Y A259324 Cf. A137679.
%K A259324 nonn,tabl
%O A259324 0,3
%A A259324 _N. J. A. Sloane_, Jun 24 2015