%I #9 Apr 16 2014 11:09:47
%S 1,1,2,1,1,2,3,1,2,2,1,3,1,1,1,1,4,1,3,2,2,3,2,1,1,1,1,4,1,2,1,1,1,1,
%T 2,1,1,1,1,2,5,1,4,2,3,3,3,1,1,1,2,4,2,2,1,1,2,1,2,1,2,1,1,2,1,5,1,3,
%U 1,1,1,2,2,1,1,2,1,2,1,1,3,1,1,1,2,2,1,1,1,3,1,1,1,1,1,1
%N Table where row n contains all compositions of n into an even number of parts.
%C Can also be regarded as a table where row n is the n-th composition into an even number of parts, sorted by sum of composition and then reverse lexicographically.
%e The table starts:
%e {}
%e (none)
%e 11
%e 21,12
%e 31,22,13,1111
%e 41,32,23,2111,14,1211,1121,1112
%e 51,42,33,3111,24,2211,2121,2112,15,1311,1221,1212,1131,1122,1113,111111
%o (PARI) evil(n) = local(r=0,m=n);while(m>0,if(m%2==1,r=1-r);m\=2);n*2+r
%o A066099row(n) = {local(v=vector(n), j=0, k=0);
%o while(n>0, k++; if(n%2==1, v[j++]=k; k=0); n\=2);
%o vector(j, i, v[j-i+1])}
%o arow(n)=A066099row(evil(n))
%Y Cf. A066099, A240837, A001969, A034008 (compositions in rows), A087447 (parts in rows for n>2).
%K nonn,tabf
%O 2,3
%A _Franklin T. Adams-Watters_, Apr 12 2014