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!)
A253888 a(0) = 1; for n >= 1: a(n) = A048673(1+(2*A064216(n))). 5
1, 3, 4, 6, 7, 13, 18, 15, 9, 63, 39, 28, 43, 12, 10, 27, 31, 16, 19, 138, 88, 123, 45, 25, 78, 48, 30, 81, 24, 73, 55, 105, 22, 36, 108, 72, 438, 111, 21, 37, 303, 33, 148, 42, 93, 87, 103, 213, 54, 91, 58, 298, 171, 34, 363, 165, 172, 198, 102, 49, 69, 163, 76, 46, 115, 228, 333, 288, 61, 135, 319, 90, 130, 75, 52 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
When A048673 is represented as a binary tree, then the node k which contains value n = A048673(k) has as its right child a(n) = A048673(2k+1).
LINKS
FORMULA
a(0) = 1; for n >= 1: a(n) = A048673(1+(2*A064216(n))).
Also, for n >= 1: a(n) = A254049(1+A064216(n)).
PROG
(Scheme, two versions)
(define (A253888 n) (if (zero? n) 1 (A048673 (+ 1 (* 2 (A064216 n))))))
(define (A253888 n) (if (zero? n) 1 (A254049 (+ 1 (A064216 n)))))
CROSSREFS
Same sequence sorted into ascending order: A032766.
Also a permutation of A254049.
Sequence in context: A326422 A093707 A058639 * A289811 A161001 A168170
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 22 2015
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 19 21:09 EDT 2024. Contains 371798 sequences. (Running on oeis4.)