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 A033907 #11 Feb 03 2025 05:34:54 %S A033907 32,55,110,121,233,466,932,1171,2288,4576,9143,10492,11741,22888, %T A033907 45776,91453,104912,116161,227327,449704,494183,628672,855350,890908, %U A033907 899807,978706,1046495,1191064,1302533,1425868,2671556,3927223,6150602,6163168 %N A033907 Sort then Add, a(1)=32. %F A033907 a(n)=A033902(n+1), n>1. - _R. J. Mathar_, Oct 22 2008 %p A033907 A033907 := proc(n) %p A033907 option remember ; %p A033907 if n =1 then %p A033907 32; %p A033907 else %p A033907 A070196(procname(n-1)) ; %p A033907 end if; %p A033907 end proc: %p A033907 seq(A033907(n),n=1..100) ; # _R. J. Mathar_, Feb 03 2025 %Y A033907 Cf. A033860. %K A033907 nonn,base,easy %O A033907 1,1 %A A033907 _N. J. A. Sloane_, _David W. Wilson_