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!)
A099887 XOR difference triangle of the powers of 3, read by rows. 1
1, 3, 2, 9, 10, 8, 27, 18, 24, 16, 81, 74, 88, 64, 80, 243, 162, 232, 176, 240, 160, 729, 554, 648, 608, 720, 544, 640, 2187, 2642, 2168, 2800, 2192, 2624, 2144, 2784, 6561, 4394, 7032, 4864, 6640, 4448, 6944, 4928, 6560, 19683, 21826, 17512, 24336, 19472 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Main diagonal is A099888, the XOR BINOMIAL transform of the powers of 3. See A099884 for the definition of XOR BINOMIAL transform and for the definition of the XOR difference triangle.
LINKS
FORMULA
T(n, k) = SumXOR_{i=0..k} (C(k, i)mod 2)*3^i, where SumXOR is the analog of summation under the binary XOR operation and C(k, i)mod 2 = A047999(k, i).
EXAMPLE
Rows begin:
[1],
[3,2],
[9,10,8],
[27,18,24,16],
[81,74,88,64,80],
[243,162,232,176,240,160],
[729,554,648,608,720,544,640],
[2187,2642,2168,2800,2192,2624,2144,2784],
[6561,4394,7032,4864,6640,4448,6944,4928,6560],
[19683,21826,17512,24336,19472,21984,17536,24480,19680,21824],...
PROG
(PARI) T(n, k)=local(B); B=0; for(i=0, k, B=bitxor(B, binomial(k, i)%2*3^(n-i))); B
CROSSREFS
Sequence in context: A246788 A365278 A342802 * A366348 A274827 A038220
KEYWORD
nonn,tabl
AUTHOR
Paul D. Hanna, Oct 28 2004
STATUS
approved

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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)