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 A261200 #12 Sep 25 2020 07:15:08 %S A261200 1,10,101,1011,10111,101111,10111111,101111111,101111111011, %T A261200 10111111101101,101111111011010011,10111111101101001101111, %U A261200 10111111101101001101111101,1011111110110100110111110101,101111111011010011011111010111,1011111110110100110111110101111 %N A261200 Minimal prime concatenation sequence with base 2 and seed 1. %H A261200 Clark Kimberling, <a href="/A261200/b261200.txt">Table of n, a(n) for n = 1..500</a> %e A261200 In base 2, the least prime starting with seed 1 is 10; the least prime starting with 10 is 101; the least prime starting with 101 is 1011. Triangular format: %e A261200 1 %e A261200 10 %e A261200 101 %e A261200 1011 %e A261200 10111 %e A261200 101111 %e A261200 10111111 %e A261200 101111111 %e A261200 101111111011 %t A261200 b = 2; s = {{1}}; %t A261200 Do[NestWhile[# + 1 &, 0, ! (PrimeQ[FromDigits[tmp = Join[Last[s], (nn = #; IntegerDigits[nn - Sum[b^n, {n, l = NestWhile[# + 1 &, 1, ! (nn - (Sum[b^n, {n, #}]) < 0) &] - 1}], b, l + 1])], b]]) &]; %t A261200 AppendTo[s, tmp], {30}]; Map[FromDigits, s] %t A261200 Map[FromDigits, s] (* A261200 *) %t A261200 Map[FromDigits[#, b] &, s] (* A261201 *) %t A261200 (* _Peter J. C. Moses_, Aug 06 2015 *) %Y A261200 A055011, A261200 and A261201 are all essentially the same sequence. %K A261200 nonn,easy,base %O A261200 1,2 %A A261200 _Clark Kimberling_, Sep 16 2015