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 A000954 #19 Mar 12 2015 20:18:18 %S A000954 2,12,68,128,152,188,332,398,368,488,632,692,626,992,878,908,1112,998, %T A000954 1412,1202,1448,1718,1532,1604,1682,2048,2252,2078,2672,2642,2456, %U A000954 2936,2504,2588,2978,3092,3032,3218,3272,3296,3632,3548,3754,4022,4058,4412 %N A000954 Conjecturally largest even integer which is an unordered sum of two primes in exactly n ways. %C A000954 The Goldbach conjecture is that every even number is the sum of two primes. %H A000954 T. D. Noe, <a href="/A000954/b000954.txt">Table of n, a(n) for n = 0..5000</a> %e A000954 2 is largest even integer which is the sum of two primes in 0 ways, 12 is largest even integer which is the unordered sum of two primes in 1 way (5+7), etc. %t A000954 f[n_] := Block[{c = 0, k = 3}, While[k <= n/2, If[PrimeQ[k] && PrimeQ[n - k], c++ ]; k++ ]; c]; a = Table[0, {50}]; a[[1]] = 2; a[[2]] = 4; Do[m = n; b = f[n]; If[b < 100, a[[b + 1]] = n], {n, 6, 20000, 2}] (* _Robert G. Wilson v_, Dec 20 2003 *) %Y A000954 Cf. A045917, A023036, A000974, A001172, A002375. %K A000954 nonn,nice %O A000954 0,1 %A A000954 _Bill Gosper_