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 A173063 #8 Jul 14 2015 01:29:41 %S A173063 1,2,4,8,10,16,86,344,406,424,2324,6358,11026,11804,48926,266744 %N A173063 Numbers n such that 2^n + n - 1 is a prime. %C A173063 The associated prime list is 2, 5, 19, 263, 1033, 65551, 77371252455336267181195349 etc. %C A173063 a(17) > 335000. - _Giovanni Resta_, Mar 26 2014 %e A173063 For n=2, 2^2+2-1=5 is prime. For n=4, 2^4+4-1=19 is prime. %t A173063 fQ[n_] := PrimeQ[ 2^n + n - 1]; k = 1; lst = {}; While[k < 35000, If[ fQ@k, AppendTo[ lst, k]; Print@k]; k ++ ] (* _Robert G. Wilson v_, Feb 26 2010 *) %K A173063 nonn %O A173063 1,2 %A A173063 _Vincenzo Librandi_, Feb 09 2010 %E A173063 Definition corrected, leading 1 inserted, 5 terms appended - _R. J. Mathar_, Feb 13 2010 %E A173063 a(12) - a(15) from _Robert G. Wilson v_, Feb 26 2010 %E A173063 a(16) from _Giovanni Resta_, Mar 26 2014