OFFSET
1,1
COMMENTS
The numbers represented as the arithmetic mean of the Fibonacci numbers and prime numbers with identical indices.
LINKS
Eric Weisstein's World of Mathematics, Prime Number
Eric Weisstein's World of Mathematics, Fibonacci Number
EXAMPLE
a(1) = (prime(2) + Fibonacci(2))/2 = (3 + 1)/2 = 2.
MATHEMATICA
Select[Array[(Prime[#] + Fibonacci@ #)/2 &, 50], IntegerQ] (* Michael De Vlieger, Aug 24 2015 *)
PROG
(PARI) a(n)=n+=n\2+1; (prime(n)+fibonacci(n))/2 \\ Charles R Greathouse IV, Aug 24 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Ilya Gutkovskiy, Aug 24 2015
STATUS
approved