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

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