Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #15 Jun 09 2014 11:03:24
%S 15,19,21,23,25,27,29,31,33,35,37,39,41,43,45,47,49,51,53,55,57,59,61,
%T 63,65,67,69,71,73,75,77,79,81,83,85,87,89,91,93,95,97,99,101,103,105,
%U 107,109,111,113,115,117,119,121,123,125,127,129,131,133,135
%N Odd numbers that are the sum of three distinct prime numbers.
%C Odd terms in A124867. - _R. J. Mathar_, Jun 09 2014
%e 15 = 3 + 5 + 7.
%t Union[Total /@ Subsets[Prime[Range[2, 30]], {3}]]
%Y Cf. A224534 (primes in this sequence).
%K nonn
%O 1,1
%A _T. D. Noe_, Apr 15 2013
%E "Odd" added by _Irina Gerasimova_, Apr 15 2013