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

 


Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A050314 Triangle: a(n,k) = number of partitions of n whose xor-sum is k. 10

%I #28 Mar 27 2024 19:15:44

%S 1,0,1,1,0,1,0,1,0,2,2,0,2,0,1,0,3,0,2,0,2,4,0,3,0,2,0,2,0,4,0,4,0,2,

%T 0,5,6,0,5,0,4,0,6,0,1,0,8,0,6,0,8,0,6,0,2,10,0,9,0,11,0,8,0,2,0,2,0,

%U 11,0,14,0,12,0,12,0,2,0,5,16,0,18,0,15,0,16,0,4,0,6,0,2,0,23,0,20,0,20,0,19,0,8,0,6,0,5

%N Triangle: a(n,k) = number of partitions of n whose xor-sum is k.

%H Alois P. Heinz, <a href="/A050314/b050314.txt">Rows n = 0..200, flattened</a>

%e Triangle: a(n,k) begins:

%e 1;

%e 0, 1;

%e 1, 0, 1;

%e 0, 1, 0, 2;

%e 2, 0, 2, 0, 1;

%e 0, 3, 0, 2, 0, 2;

%e 4, 0, 3, 0, 2, 0, 2;

%e 0, 4, 0, 4, 0, 2, 0, 5;

%e 6, 0, 5, 0, 4, 0, 6, 0, 1;

%e 0, 8, 0, 6, 0, 8, 0, 6, 0, 2;

%e 10, 0, 9, 0, 11, 0, 8, 0, 2, 0, 2;

%e 0, 11, 0, 14, 0, 12, 0, 12, 0, 2, 0, 5;

%e 16, 0, 18, 0, 15, 0, 16, 0, 4, 0, 6, 0, 2;

%e ...

%p with(Bits):

%p b:= proc(n, i, k) option remember; `if`(n=0, x^k, `if`(i<1, 0,

%p add(b(n-i*j, i-1, `if`(j::even, k, Xor(i, k))), j=0..n/i)))

%p end:

%p T:= n-> (p-> seq(coeff(p, x, i), i=0..n))(b(n$2, 0)):

%p seq(T(n), n=0..20); # _Alois P. Heinz_, Dec 01 2015

%t b[n_, i_, k_] := b[n, i, k] = If[n==0, x^k, If[i<1, 0, Sum[b[n-i*j, i-1, If[EvenQ[j], k, BitXor[i, k]]], {j, 0, n/i}]]]; T[n_] := Function[p, Table[Coefficient[p, x, i], {i, 0, n}]][b[n, n, 0]]; Table[T[n], {n, 0, 20}] // Flatten (* _Jean-François Alcover_, Jan 24 2016, after _Alois P. Heinz_ *)

%Y a(2n,0) = A048833(n). a(2n+1,1) = A050316(n). a(n,n) = A050315(n).

%Y Row sums give A000041.

%Y a(4n,2n) gives A370874.

%Y Cf. A307431, A307432.

%K nonn,tabl,base,look

%O 0,10

%A _Christian G. Bower_, Sep 15 1999

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 18 09:10 EDT 2024. Contains 375999 sequences. (Running on oeis4.)