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!)
A364445 Complement of A364444. 2
1, 4, 6, 9, 12, 13, 17, 19, 21, 25, 26, 28, 32, 33, 35, 37, 39, 41, 43, 45, 46, 50, 52, 53, 56, 59, 60, 63, 64, 66, 68, 70, 72, 74, 77, 79, 80, 82, 84, 86, 88, 90, 92, 93, 96, 98, 99, 102, 105, 106, 108, 112, 113, 116, 118, 119, 120, 123, 124, 127, 129, 132, 133 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Compared to A364444, this sequence is what A363762 is to A077773.
LINKS
PROG
(Python)
from itertools import count, islice
def A364445_gen(): # generator of terms
a = 0
for n in count(1):
b = sum(1 for k in range(n**2+1, (n+1)**2) if (m:=(~k&k-1).bit_length())&1 or (k>>m)&7<7)
yield from range(a+1, b)
a = b
A364445_list = list(islice(A364445_gen(), 20)) # Chai Wah Wu, Aug 01 2023
CROSSREFS
Sequence in context: A258743 A292660 A190081 * A298468 A190304 A367420
KEYWORD
nonn
AUTHOR
Hugo Pfoertner, Aug 01 2023
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 August 3 20:33 EDT 2024. Contains 374905 sequences. (Running on oeis4.)