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

A268828
Permutation of nonnegative integers: a(0) = 0, a(n) = 1 + A268826(A268718(n)-1).
6
0, 1, 3, 2, 8, 6, 4, 5, 20, 18, 9, 17, 7, 11, 10, 12, 28, 26, 33, 25, 31, 35, 34, 36, 19, 15, 14, 16, 32, 30, 13, 29, 44, 42, 49, 41, 47, 51, 50, 52, 67, 63, 62, 64, 48, 46, 61, 45, 27, 23, 22, 24, 56, 54, 21, 53, 68, 66, 57, 65, 55, 59, 58, 60, 76, 74, 81, 73, 79, 83, 82, 84, 99, 95, 94, 96, 80, 78, 93, 77, 123, 119, 118, 120, 88, 86
OFFSET
0,3
COMMENTS
The "fifth shifted power" of permutation A268718.
FORMULA
a(0) = 0, and for n >= 1, a(n) = 1 + A268826(A268718(n)-1).
PROG
(Scheme) (define (A268828 n) (if (zero? n) n (+ 1 (A268826 (+ -1 (A268718 n))))))
CROSSREFS
Inverse: A268827.
Row 5 of array A268830.
Sequence in context: A135992 A182638 A172084 * A191440 A191727 A191537
KEYWORD
nonn
AUTHOR
Antti Karttunen, Feb 14 2016
STATUS
approved