This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A268832 #5 Feb 17 2016 17:25:04 %S A268832 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, %T A268832 17,16,31,30,15,14,43,42,51,50,49,48,53,52,69,68,65,64,47,46,63,62,29, %U A268832 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 %N A268832 Permutation of nonnegative integers: a(0) = 0, a(n) = 1 + A268828(A268718(n)-1). %C A268832 The sixth "shifted power" of A268718. %H A268832 Antti Karttunen, <a href="/A268832/b268832.txt">Table of n, a(n) for n = 0..8191</a> %H A268832 <a href="/index/Per#IntegerPermutation">Index entries for sequences that are permutations of the natural numbers</a> %F A268832 a(0) = 0, and for n >= 1, a(n) = 1 + A268828(A268718(n)-1). %o A268832 (Scheme) (define (A268832 n) (if (zero? n) n (+ 1 (A268828 (+ -1 (A268718 n)))))) %Y A268832 Inverse: A268831. %Y A268832 Row 6 of A268830. %Y A268832 Cf. A003188, A006068, A268718, A268828. %K A268832 nonn %O A268832 0,3 %A A268832 _Antti Karttunen_, Feb 14 2016