VOOZH
about
URL: https://oeis.org/A277284
⇱ A277284 - OEIS
login
A277284
Prime-indexed primes p such that Fibonacci(p) is prime.
2
3, 5, 11, 17, 83, 431, 509, 130021, 148091, 433781
(
list
;
graph
;
refs
;
listen
;
history
;
text
;
internal format
)
OFFSET
1,1
COMMENTS
Intersection of
A006450
and
A083668
. -
Michel Marcus
, Oct 21 2016
LINKS
Table of n, a(n) for n=1..10.
FORMULA
a(n) = prime(
A277575
(n)).
a(n) = prime(prime(
A122534
(n))).
EXAMPLE
17 =
A000040
(7), with 7 itself being a prime, and
A000045
(17) = 1597, a prime, thus 17 is included in this sequence.
MATHEMATICA
Select[Prime[Prime[Range[37000]]], PrimeQ[Fibonacci[#]]&] (*
Harvey P. Dale
, Sep 12 2019 *)
PROG
(PARI) isok(p) = isprime(p) && isprime(primepi(p)) && isprime(fibonacci(p)); \\
Michel Marcus
, Oct 21 2016
CROSSREFS
Cf.
A000040
,
A000045
,
A006450
,
A083668
,
A122534
,
A277575
.
Sequence in context:
A155990
A109556
A167675
*
A090952
A347078
A270778
Adjacent sequences:
A277281
A277282
A277283
*
A277285
A277286
A277287
KEYWORD
nonn
,
hard
,
more
AUTHOR
Bobby Jacobs
, Oct 21 2016
STATUS
approved