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 A194267 #15 Aug 03 2014 14:01:32 %S A194267 10,15,39,35,83,39,143,131,129,83,179,111,263,143,243,227,479,129,839, %T A194267 203,381,179,463,363,503,263,543,339,641,243,1367,547,597,479,563,219, %U A194267 965,839,549,563,1643,381,1551,839,993,463,1883,531,1571,503,819,523 %N A194267 Smallest sum of three distinct primes of the form n*k+1. %H A194267 Vincenzo Librandi, <a href="/A194267/b194267.txt">Table of n, a(n) for n = 1..1000</a> %e A194267 a(1) = 2+3+5 = 10. %e A194267 a(2) = 3+5+7 = 15. %e A194267 a(3) = 7+13+19 = 39. %e A194267 a(4) = 5+13+17 = 35. %e A194267 a(5) = 11+31+41 = 83. %e A194267 a(6) = 7+13+19 = 39. %t A194267 Table[ps = Select[Table[n*k + 1, {k, 100}], PrimeQ, 3]; If[Length[ps] == 3, Total[ps], 0], {n, 100}] (* _T. D. Noe_, Oct 21 2011 *) %Y A194267 Cf. A077318, A132810, A193873, A194266. %K A194267 nonn %O A194267 1,1 %A A194267 _Omar E. Pol_, Sep 03 2011