login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A117740 Prime Fibonacci numbers that are Chen primes. 0
2, 3, 5, 13, 89, 233, 514229 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
ischenprime:=proc(n); if (isprime(n) = 'true') then if (isprime(n+2) = 'true' or numtheory[bigomega](n+2) = 2) then RETURN('true') else RETURN('false') fi fi end: ts_prime_fibonacci_chen:=proc(n) local i, tren, ans; ans:= [ ]: for i from 0 to n do tren := combinat[fibonacci](i): if (isprime( tren ) = 'true' and ischenprime(tren) = 'true') then ans:=[op(ans), tren]: fi od; RETURN(ans) end: ts_prime_fibonacci_chen(300); # Jani Melik, May 05 2006
CROSSREFS
Sequence in context: A152114 A139095 A005478 * A041047 A120494 A038601
KEYWORD
nonn
AUTHOR
Jani Melik, Apr 28 2006; corrected Apr 28 2006
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 2 03:08 EDT 2024. Contains 373947 sequences. (Running on oeis4.)