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 A231932 #7 Nov 16 2013 14:16:33 %S A231932 0,11,1,10,100,12,2,20,101,22,3,13,31,103,30,110,33,4,14,41,104,40, %T A231932 114,24,42,112,21,102,120,201,210,1000,105,15,5,25,52,115,35,53,113, %U A231932 23,32,121,26,6,16,61,106,60,116,36,63,131,34,43,134,143,314,341,413,431,1003 %N A231932 Working in base 9: a(0)=0, thereafter a(n+1) is the smallest number not already in the sequence such that the bits of a(n) and a(n+1) together can be rearranged to form a palindrome. %C A231932 This is a permutation of the nonnegative integers in base 9 - see the Comments in A228407 for the proof. %t A231932 a[0] = 0; a[n_] := a[n] = Block[{k = 1, idm = IntegerDigits[ a[n - 1], 9], t = a@# & /@ Range[n - 1]}, Label[ start]; While[ MemberQ[t, k], k++]; While[ Select[ Permutations[ Join[ idm, IntegerDigits[k, 9]]], #[[1]] != 0 && # == Reverse@# &] == {}, k++; Goto[ start]]; k]; s = Array[a, 60, 0]; FromDigits@# & /@ IntegerDigits[s, 9] %Y A231932 Cf. A230891, A231920, A231922, A231924, A231926, A231928, A231930, A228407, A231933. %K A231932 nonn,base,easy %O A231932 0,2 %A A231932 _N. J. A. Sloane_ and _Robert G. Wilson v_, Nov 15 2013