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”).

A268832
Permutation of nonnegative integers: a(0) = 0, a(n) = 1 + A268828(A268718(n)-1).
6
0, 1, 3, 2, 7, 6, 4, 5, 19, 18, 11, 10, 9, 8, 13, 12, 27, 26, 35, 34, 33, 32, 37, 36, 21, 20, 17, 16, 31, 30, 15, 14, 43, 42, 51, 50, 49, 48, 53, 52, 69, 68, 65, 64, 47, 46, 63, 62, 29, 28, 25, 24, 55, 54, 23, 22, 67, 66, 59, 58, 57, 56, 61, 60, 75, 74, 83, 82, 81, 80, 85, 84, 101, 100, 97, 96, 79, 78, 95, 94, 125, 124, 121, 120
OFFSET
0,3
COMMENTS
The sixth "shifted power" of A268718.
FORMULA
a(0) = 0, and for n >= 1, a(n) = 1 + A268828(A268718(n)-1).
PROG
(Scheme) (define (A268832 n) (if (zero? n) n (+ 1 (A268828 (+ -1 (A268718 n))))))
CROSSREFS
Inverse: A268831.
Row 6 of A268830.
Sequence in context: A154436 A269402 A268934 * A201566 A072764 A364832
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 14 2016
STATUS
approved