The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A353168 Polynomials over GF(2) that are divisible by x^2+x+1, encoded as binary numbers. 0
0, 7, 9, 14, 18, 21, 27, 28, 35, 36, 42, 45, 49, 54, 56, 63, 65, 70, 72, 79, 83, 84, 90, 93, 98, 101, 107, 108, 112, 119, 121, 126, 130, 133, 139, 140, 144, 151, 153, 158, 161, 166, 168, 175, 179, 180, 186, 189, 195, 196, 202, 205, 209, 214, 216, 223, 224, 231, 233 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Terms of A048727, sorted.
LINKS
PROG
(Python)
from itertools import count, chain, islice
def A353168_gen(): # generator of terms
return chain((0, ), chain.from_iterable((sorted(n^ n<<1 ^ n<<2 for n in range(2**l, 2**(l+1))) for l in count(0))))
A353168_list = list(islice(A353168_gen(), 30)) # Chai Wah Wu, Jun 29 2022
CROSSREFS
Cf. A048727.
See also A001969 for those divisible by x + 1.
Sequence in context: A320325 A320699 A332514 * A305214 A319877 A020939
KEYWORD
nonn
AUTHOR
Jack Zhang, Apr 28 2022
EXTENSIONS
More terms from David A. Corneth, Apr 28 2022
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 May 20 19:00 EDT 2024. Contains 372720 sequences. (Running on oeis4.)