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!)
A309773 n directly precedes a(n) in Sharkovskii ordering. 1
1, 5, 2, 7, 10, 9, 4, 11, 14, 13, 20, 15, 18, 17, 8, 19, 22, 21, 28, 23, 26, 25, 40, 27, 30, 29, 36, 31, 34, 33, 16, 35, 38, 37, 44, 39, 42, 41, 56, 43, 46, 45, 52, 47, 50, 49, 80, 51, 54, 53, 60, 55, 58, 57, 72, 59, 62, 61, 68, 63, 66, 65, 32, 67, 70, 69, 76 (list; graph; refs; listen; history; text; internal format)
OFFSET
2,2
COMMENTS
Sharkovskii ordering is as follows:
- numbers that are not powers of two come first,
ordered by increasing 2-adic valuation and then by increasing value,
- powers of two come last, in decreasing order.
The number 3 is the least element of Sharkovskii ordering; it is the only number that does not appear in the sequence.
The number 1 is the greatest element of Sharkovskii ordering; it does not precede any other number, hence the offset of the sequence is 2.
LINKS
FORMULA
a(2^(k+1)) = 2^k for any k >= 0.
a((2*m+1)*2^k) = (2*m+3)*2^k for any m > 0 and k >= 0.
PROG
(PARI) a(n) = if (hammingweight(n)==1, n/2, my (v=valuation(n, 2)); n+2*2^v)
(Python)
def A309773(n): return n>>1 if (m:=(~n & n-1).bit_length()+1) == n.bit_length() else n+(1<<m) # Chai Wah Wu, Jul 06 2022
CROSSREFS
Cf. A007814.
Sequence in context: A155790 A200646 A198130 * A241388 A305574 A248259
KEYWORD
nonn
AUTHOR
Rémy Sigrist, Aug 16 2019
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 April 18 15:16 EDT 2024. Contains 371780 sequences. (Running on oeis4.)