Svoboda | Graniru | BBC Russia | Golosameriki | Facebook
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!)
A374527 Odd numbers whose Collatz trajectory is a Sidon sequence. 2
1, 21, 85, 151, 227, 341, 1365, 5461, 14563, 21845, 87381, 349525, 932067, 1398101, 5592405, 22369621, 26512143, 39768215, 59652323, 89478485, 357913941, 1431655765, 3817748707, 5726623061 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For more information see A375006.
LINKS
PROG
(Python)
from itertools import count, islice
def A374527_gen(startvalue=1): # generator of terms >= startvalue
s = max(startvalue, 1)
for n in count(s+(s&1^1), 2):
t, a, c = [n], n, set()
while a > 1:
a = 3*a+1 if a&1 else a>>1
for p in t:
if (b:=p+a) in c:
break
c.add(b)
else:
t.append(a)
continue
break
else:
yield n
A374527_list = list(islice(A374527_gen(), 10)) # Chai Wah Wu, Jul 27 2024
CROSSREFS
Odd terms of A375006.
Sequence in context: A041856 A044208 A044589 * A116972 A221475 A277356
KEYWORD
nonn,hard,more
AUTHOR
Markus Sigg and Hugo Pfoertner, Jul 27 2024
EXTENSIONS
a(23)-a(24) from Chai Wah Wu, Jul 29 2024
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 September 11 17:54 EDT 2024. Contains 375839 sequences. (Running on oeis4.)