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 A179429 #17 Mar 30 2012 17:35:07 %S A179429 3,5,7,11,13,17,19,23,29,31,37,41,43,47,59,61,71,73,79,89,97,103,107, %T A179429 113,131,149,151,157,167,173,179,181,191,199,233,239,241,251,257,269, %U A179429 293,379,383,401,419,433,467,479,487,521,523,613,617,619 %N A179429 Primes that are sum of three positive Fibonacci numbers. %e A179429 a(6)=17=1+3+13=Fib(1)+Fib(4)+Fib(7) %t A179429 f=Fibonacci[Range[15]]; Select[Union[Flatten[Outer[Plus, f, f, f]]], # <= f[[-1]]+2 && PrimeQ[#] &] %Y A179429 A000040, A178576, A178991 %K A179429 nonn %O A179429 1,1 %A A179429 _Carmine Suriano_, Jan 12 2011