Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)

Revision History for A367908

(Underlined text is an addition; strikethrough text is a deletion.)

Showing entries 1-10 | older changes
A367908 Numbers n such that there is only one way to choose a different binary index of each binary index of n.
(history; published version)
#16 by OEIS Server at Sun Feb 11 02:34:53 EST 2024
LINKS

John Tyler Rascoe, <a href="/A367908/b367908_1.txt">Table of n, a(n) for n = 1..2000</a>

#15 by Michel Marcus at Sun Feb 11 02:34:53 EST 2024
STATUS

reviewed

approved

Discussion
Sun Feb 11 02:34
OEIS Server: Installed first b-file as b367908.txt.
#14 by Joerg Arndt at Sun Feb 11 00:15:03 EST 2024
STATUS

proposed

reviewed

#13 by John Tyler Rascoe at Sat Feb 10 17:54:24 EST 2024
STATUS

editing

proposed

#12 by John Tyler Rascoe at Sat Feb 10 17:49:23 EST 2024
LINKS

John Tyler Rascoe, <a href="/A367908/b367908_1.txt">Table of n, a(n) for n = 1..2000</a>

PROG

(Python)

from itertools import count, islice, product

def bin_i(n): #binary indices

return([(i+1) for i, x in enumerate(bin(n)[2:][::-1]) if x =='1'])

def a_gen(): #generator of terms

for n in count(1):

p = list(product(*[bin_i(k) for k in bin_i(n)]))

x, c = len(p), 0

for j in range(x):

if len(set(p[j])) == len(p[j]): c += 1

if j+1 == x and c == 1: yield(n)

A367908_list = list(islice(a_gen(), 100)) # John Tyler Rascoe, Feb 10 2024

KEYWORD

nonn,base

STATUS

approved

editing

#11 by Michael De Vlieger at Thu Dec 28 09:22:11 EST 2023
STATUS

proposed

approved

#10 by Gus Wiseman at Thu Dec 28 08:53:22 EST 2023
STATUS

editing

proposed

#9 by Gus Wiseman at Thu Dec 28 05:43:18 EST 2023
CROSSREFS

These set-systems are counted by A367904, non-isomorphic A368099.

STATUS

approved

editing

#8 by Michael De Vlieger at Tue Dec 12 08:41:24 EST 2023
STATUS

proposed

approved

#7 by Gus Wiseman at Tue Dec 12 05:43:16 EST 2023
STATUS

editing

proposed

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