OFFSET
1,1
COMMENTS
Lee shows that this sequence has positive lower density. - Charles R Greathouse IV, Nov 02 2010
The lower density of this sequence is at least 0.0254905 (Liu and Xue, 2021). - Amiram Eldar, Mar 04 2021
LINKS
T. D. Noe, Table of n, a(n) for n = 1..1000
K. S. Enoch Lee, On the sum of a prime and a Fibonacci number, International Journal of Number Theory, Vol. 6, No. 7 (2010), pp. 1669-1676; arXiv preprint, arXiv:1011.0173 [math.NT], 2010.
Zhixin Liu and Mengyuan Xue, The sum of a prime and a Fibonacci number, International Journal of Number Theory (2021).
EXAMPLE
11 = 3+8 is a term since it is the sum of a prime number (3) and a Fibonacci number (8).
MATHEMATICA
Take[Union[Flatten[Table[Fibonacci[n] + Prime[k], {n, 70}, {k, 70}]]], 70]
PROG
(PARI) is(n)=my(k, f); while((f=fibonacci(k++))<n, if(isprime(n-f), return(1))); 0 \\ Charles R Greathouse IV, Sep 14 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
Tanya Khovanova, Aug 12 2007
STATUS
approved