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 A202136 #40 Nov 18 2018 07:51:59 %S A202136 13,17,131,4127,18191,10131071,1524287,362147483647, %T A202136 152305843009213693951,58618970019642690137449562111, %U A202136 57162259276829213363391578010288127,55170141183460469231731687303715884105727 %N A202136 Prefixing digits to Mersenne primes to obtain larger primes. %C A202136 The smallest prefixing digits for the Mersenne primes are given in A209385. - _Gilbert Mozzo_, Mar 07 2012 %C A202136 The next term a(13) has 160 decimal digits. - _Andrew Howroyd_, Nov 17 2018 %H A202136 Henri Lifchitz and Renaud Lifchitz, <a href="http://www.primenumbers.net/prptop/prptop.php">PRP Top Records</a> %F A202136 Mersenne prime + n*10^D with D = number of digits of the Mersenne prime. %e A202136 For Mersenne4: -1 + 2^7 + 4*10^3 = 4127 which is prime. %o A202136 (PARI) %o A202136 ppfx(n)={my(w=10^(1+logint(n,10)), k=n+w); while(!ispseudoprime(k), k+=w); k} %o A202136 { for(n=1, 100, my(p=1<<prime(n)-1); if(ispseudoprime(p), print1(ppfx(p), ", "))) } \\ _Andrew Howroyd_, Nov 17 2018 %Y A202136 Cf. A000668, A209385. %K A202136 nonn,base %O A202136 1,1 %A A202136 _Gilbert Mozzo_, Dec 12 2011 %E A202136 a(7)-a(9) added by _Gilbert Mozzo_, Mar 07 2012 %E A202136 a(10)-a(12) from _Andrew Howroyd_, Nov 17 2018