OFFSET
1,8
COMMENTS
A k-tournament sequence is an increasing sequence of positive integers (t_1,t_2,...) such that t_1 = p, t_i = p (mod k-1) and t_{i+1} <= k*t_i, where k>1, p>=1. This is the table of k-tournament sequences when the starting node has label p = 1 for k>=1.
LINKS
M. Cook and M. Kleber, Tournament sequences and Meeussen sequences, Electronic J. Comb. 7 (2000), #R44.
EXAMPLE
Table begins:
1,1,1,1,1,1,1,1,1,1,1,1,1,...
0,1,2,3,4,5,6,7,8,9,10,11,...
0,2,10,27,56,100,162,245,352,486,650,...
0,7,114,693,2704,8125,20502,45619,92288,173259,...
0,41,2970,52812,481376,2918750,13399506,50216915,...
0,397,182402,12628008,337587520,4976321250,48633051942,...
0,6377,27392682,9924266772,978162377600,42197834315625,...
0,171886,10390564242,26507035453923,12088945462984960,...
0,7892642,10210795262650,246323730279500082,...
PROG
(PARI) {T(n, k)=local(M=matrix(n+1, n+1)); for(r=1, n+1, for(c=1, r, M[r, c]=if(r==c, 1, if(c>1, (M^k)[r-1, c-1])+(M^k)[r-1, c]))); return((M^(k-1))[n+1, 1])}
CROSSREFS
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Oct 14 2005
STATUS
approved