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

A268826
Permutation of nonnegative integers: a(0) = 0, a(n) = 1 + A268824(A268718(n)-1).
6
0, 1, 3, 2, 6, 7, 4, 5, 18, 19, 16, 17, 10, 11, 8, 9, 26, 27, 24, 25, 34, 35, 32, 33, 14, 15, 12, 13, 30, 31, 28, 29, 42, 43, 40, 41, 50, 51, 48, 49, 62, 63, 60, 61, 46, 47, 44, 45, 22, 23, 20, 21, 54, 55, 52, 53, 66, 67, 64, 65, 58, 59, 56, 57, 74, 75, 72, 73, 82, 83, 80, 81, 94, 95, 92, 93, 78, 79, 76, 77, 118, 119, 116, 117, 86, 87
OFFSET
0,3
COMMENTS
The "fourth shifted power" of permutation A268718.
FORMULA
a(0) = 0, and for n >= 1, a(n) = 1 + A268824(A268718(n)-1).
PROG
(Scheme) (define (A268826 n) (if (zero? n) n (+ 1 (A268824 (+ -1 (A268718 n))))))
CROSSREFS
Inverse: A268825.
Row 4 of array A268830.
Sequence in context: A371962 A268825 A245812 * A182849 A120231 A083362
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 14 2016
STATUS
approved