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 A333302 #13 May 11 2020 06:39:32 %S A333302 1,2,4,8,16,122,442,884,1768,17522,150442,1088420,17684200,175284200, %T A333302 1750844200,17508842000,177508420000,1755084200000,17510842000000, %U A333302 175084220000000,1750844200000000,17508842000000000,177508420000000000,1755084200000000000 %N A333302 Numbers produced by iteratively sorting the digits of the last number from largest to smallest in base 10 and then doubling, starting with the number 1. %C A333302 It appears that the first 8 digits begin to cycle in a period of 6 while adding one zero every iteration. %t A333302 a[1] = 1; a[n_] := a[n] = 2 FromDigits@ Reverse@ Sort@ IntegerDigits@ a[n-1]; Array[a, 24] (* _Giovanni Resta_, Apr 15 2020 *) %o A333302 (PARI) lista(nn) = {my(a=1); print1(a, ", "); for (n=2, nn, a = 2*fromdigits(vecsort(digits(a),,4)); print1(a, ", "););} \\ _Michel Marcus_, Apr 16 2020 %Y A333302 Cf. A004000, A057615, A095197. %K A333302 nonn,base %O A333302 1,2 %A A333302 _Ethan Hulinsky_, Mar 14 2020