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 A105047 #21 Feb 16 2025 08:32:57 %S A105047 1,1,2,2,3,3,3,3,3,3,5,4,5,3,4,3,3,7,4,5,4,3,5,5,6,5,5,4,4,3,7,5,5,7, %T A105047 5,5,6,4,6,5,5,7,4,6,5,4,6,5,8,5,7,4,5,6,5,3,3,8,8,5,4,5,8,8,5,5,9,4, %U A105047 8,7,7,6,6,5,5,7,5,7,7,6,6,6,6,5,7,7,6,6,5,6,5,5,7,4,8,4,8,5,8,7,8,9,7,5,9 %N A105047 Form an addition table of the primes; a(n) is the number of even numbers that appear for the first time in column n. %C A105047 For n > 2: a(n) = A102696(n-1) - A102696(n-2); a(n+1) = length of n-th row in the triangle A260580. - _Reinhard Zumkeller_, Aug 11 2015 %H A105047 Reinhard Zumkeller, <a href="/A105047/b105047.txt">Table of n, a(n) for n = 1..1000</a> %H A105047 Eric Weisstein's World of Mathematics, <a href="https://mathworld.wolfram.com/GoldbachPartition.html">Goldbach Partition</a> %H A105047 Wikipedia, <a href="http://en.wikipedia.org/wiki/Goldbach%27s_conjecture">Goldbach's conjecture</a> %H A105047 <a href="/index/Go#Goldbach">Index entries for sequences related to Goldbach conjecture</a> %e A105047 The addition table is as follows: %e A105047 + | 2 3 5 7 11 %e A105047 --+-------------- %e A105047 2 | 4 5 7 9 13 %e A105047 3 | 6 8 10 14 %e A105047 5 | 10 12 16 %e A105047 7 | 14 18 %e A105047 11 | 22 %o A105047 (PARI) lista(n) = {maxp = prime(n); v = vector(maxp); forprime (p=1, maxp, nb = 0; forprime (q=1, p, s = p+q; if (! (s % 2), if (!v[s/2], nb++); v[s/2] = 1;);); print1(nb, ", "););} \\ _Michel Marcus_, Apr 18 2013 %o A105047 (Haskell) %o A105047 a105047 1 = 1 %o A105047 a105047 n = length $ a260580_row (n - 1) %o A105047 -- _Reinhard Zumkeller_, Aug 11 2015 %Y A105047 Cf. A102696, A260580. %K A105047 nonn %O A105047 1,3 %A A105047 _Andrew S. Plewe_, Apr 06 2005 %E A105047 More terms from _Reinhard Zumkeller_, Apr 19 2005