login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A161135 Triangular array T(m,n), 1<=n<=m, giving the minimum positive number of deals of m cards into n piles required to collect all cards in the first pile. Each deal tosses all cards from a pile, the last dealt card indicates a pile to deal next, each deal tosses one card consecutively to the first, 2nd, ..., n-th, first, 2nd, ... pile. 3

%I #7 Jul 12 2012 00:39:50

%S 1,1,2,1,4,5,1,3,8,9,1,6,24,36,37,1,10,9,47,85,86,1,12,55,125,144,231,

%T 232,1,4,45,181,384,511,747,748,1,8,22,214,613,1097,183,931,932,1,18,

%U 28,54,373,837,993,1931,2864,2865,1,6,141,591,1642,3211,8451,1836,14891

%N Triangular array T(m,n), 1<=n<=m, giving the minimum positive number of deals of m cards into n piles required to collect all cards in the first pile. Each deal tosses all cards from a pile, the last dealt card indicates a pile to deal next, each deal tosses one card consecutively to the first, 2nd, ..., n-th, first, 2nd, ... pile.

%C Formatted as a triangular array:

%C m=1: 1

%C m=2: 1, 2

%C m=3: 1, 4, 5

%C m=4: 1, 3, 8, 9

%C m=5: 1, 6, 24, 36, 37

%C m=6: 1, 10, 9, 47, 85, 86

%C m=7: 1, 12, 55, 125, 144, 231, 232

%C m=8: 1, 4, 45, 181, 384, 511, 747, 748

%C m=9: 1, 8, 22, 214, 613, 1097, 183, 931, 932

%C m=10: 1, 18, 28, 54, 373, 837, 993, 1931, 2864, 2865

%C m=11: 1, 6, 141, 591, 1642, 3211, 8451, 1836, 14891, 17760, 17761

%C m=12: 1, 11, 47, 206, 964, 3274, 14079, 14738, 55459, 92010, 109779, 109780

%F T(m,2)=A002326(m-1); T(m,m)=T(m,m-1)+1

%e For m=n=3, deals result in a sequence of configurations (listing number of cards in the piles):

%e 3* 0 0

%e 1 1 1*

%e 2* 1 0

%e 1 2* 0

%e 2 1* 0

%e 3* 0 0

%e where * indicate a pile to deal next. The total number of deals here is T(3,3)=5.

%o (PARI) { T(m,n) = local(v,r,k,t); v=vector(n); v[1]=m; r=0; k=1; until( vecmax(v)==m, r++; t=v[k]; v[k]=0; k=0; while(t, k++; if(k>n, k=1); v[k]++; t--) ); r }

%Y A002326 (second column), A161136 (the total number of tossed cards)

%K nonn,tabf

%O 1,3

%A _Max Alekseyev_, Jun 02 2009

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 16 12:52 EDT 2024. Contains 371711 sequences. (Running on oeis4.)