login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A155012
Fibonacci prime numbers f, 3*f+2 are also primes.
0
3, 5, 13, 89, 233, 1597, 514229, 99194853094755497, 19134702400093278081449423917
OFFSET
1,1
COMMENTS
3*3+2=11, 3*5+2=17, 3*13+2=41, ...
MATHEMATICA
a={}; Do[f=Fibonacci[n]; If[PrimeQ[f], If[PrimeQ[3*f+2], AppendTo[a, f]]], {n, 4*6!}]; a
PROG
(Python)
from gmpy2 import is_prime
A155012_list = []
a, b, a2, b2 = 0, 1, 2, 5
for _ in range(10**3):
if is_prime(b) and is_prime(b2):
A155012_list.append(b)
a, b, a2, b2 = b, a+b, b2, a2+b2-2 # Chai Wah Wu, Nov 04 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved