login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A253890
a(n) = A253560(A253883(n)) = A122111((2*A122111(n)) - 1).
3
1, 4, 16, 8, 18, 32, 2048, 9, 128, 512, 100, 256, 2147483648, 32768, 54, 64, 1200, 1024, 10616832, 144, 1048576, 864, 43200, 25, 65536, 8796093022208, 81, 4194304, 644972544, 131072, 7260, 36, 486, 75557863725914323419136, 268435456, 8192
OFFSET
1,2
COMMENTS
Conjugate the partition defined by the prime factorization of n (see, e.g., table A112798 or A241918), resulting k = A122111(n), then take the k-th odd number (2k-1), and conjugate again, giving a(n) = A122111(2k-1).
Thus after a(1)=1, this is a permutation of A070003 (numbers divisible by the square of their largest prime factor).
When A122111 is represented as a binary tree, then node A122111(t > 1) = n has as its left child A122111(2t-1) = a(n).
FORMULA
a(n) = A122111((2*A122111(n)) - 1) = A122111(A005408(A122111(n) - 1)).
a(n) = A253560(A253883(n)).
PROG
(Scheme, two alternative definitions)
(define (A253890 n) (A253560 (A253883 n)))
(define (A253890 n) (A122111 (- (* 2 (A122111 n)) 1)))
CROSSREFS
Cf. A070003 (same sequence without 1, sorted into ascending order).
Cf. also A112798 and A241918.
Sequence in context: A187532 A335353 A110651 * A115054 A228561 A049208
KEYWORD
nonn
AUTHOR
Antti Karttunen, Jan 17 2015
STATUS
approved