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 A048974 #19 Apr 22 2025 02:32:28 %S A048974 5,7,9,13,15,19,21,25,31,33,39,43,45,49,55,61,63,69,73,75,81,85,91,99, %T A048974 103,105,109,111,115,129,133,139,141,151,153,159,165,169,175,181,183, %U A048974 193,195,199,201,213,225,229,231,235,241,243,253,259 %N A048974 Odd numbers that are the sum of 2 primes. %C A048974 A048974, A052147, A067187 and A088685 are very similar after dropping terms less than 13. - _Eric W. Weisstein_, Oct 10 2003 %H A048974 Robert Price, <a href="/A048974/b048974.txt">Table of n, a(n) for n = 1..10000</a> %F A048974 One of the primes must be 2, so this is simply the odd primes + 2. %F A048974 a(n) = A065091(n) + 2. - _Sean A. Irvine_, Jul 15 2021 %t A048974 Select[Flatten@Table[Prime[i] + Prime[j], {i, 100}, {j, 1, i}], # < Prime[100] && OddQ[#] &] (* _Robert Price_, Apr 21 2025 *) %Y A048974 Cf. A014092, A065091. %K A048974 nonn,easy %O A048974 1,1 %A A048974 _N. J. A. Sloane_