login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A048723 Binary "exponentiation" without carries: {0..y}^{0..x}, where y (column index) is binary encoding of GF(2)-polynomial and x (row index) is the exponent. 17
1, 0, 1, 0, 1, 1, 0, 1, 2, 1, 0, 1, 4, 3, 1, 0, 1, 8, 5, 4, 1, 0, 1, 16, 15, 16, 5, 1, 0, 1, 32, 17, 64, 17, 6, 1, 0, 1, 64, 51, 256, 85, 20, 7, 1, 0, 1, 128, 85, 1024, 257, 120, 21, 8, 1, 0, 1, 256, 255, 4096, 1285, 272, 107, 64, 9, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

0,9

FORMULA

a(n) = Xpower( (n-((trinv(n)*(trinv(n)-1))/2)), (((trinv(n)-1)*(((1/2)*trinv(n))+1))-n) );

EXAMPLE

1 0 0 0 0 0 0 0 0 ...

1 1 1 1 1 1 1 1 1 ...

1 2 4 8 16 32 64 128 256 ...

1 3 5 15 17 51 85 255 257 ...

1 4 16 64 256 1024 4096 16384 65536 ...

MAPLE

# Xmult and trinv have been given in A048720.

Xpower := proc(nn, mm) option remember; if(0 = mm) then RETURN(1); # By definition, also 0^0 = 1. else RETURN(Xmult(nn, Xpower(nn, mm-1))); fi; end;

CROSSREFS

Cf. ordinary power table A004248 and A034369, A034373.

Cf. A048710. Row 3: A001317, Row 5: A038183 (bisection of row 3), Row 7: A038184. Column 2: A000695, diagonal of A048720. Diagonal: A048731.

Sequence in context: A055340 A119328 A058716 * A088455 A004248 A034373

Adjacent sequences:  A048720 A048721 A048722 * A048724 A048725 A048726

KEYWORD

nonn,tabl

AUTHOR

Antti Karttunen, Apr 26 1999

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 13:49 EST 2012. Contains 205810 sequences.