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”).

A227627
Numbers k such that F(5*k)/(5*F(k)) is prime, where F(m) is the m-th Fibonacci number.
1
2, 3, 5, 7, 13, 25, 29, 37, 47, 67, 457, 2309, 2383, 4133, 5023, 8059
OFFSET
1,1
COMMENTS
Except for k = 25, all other terms k are primes. Conjecture: this sequence is infinite. - Thomas Ordowski, Jul 18 2013
a(17) > 50000. - Michael S. Branicky, Nov 06 2024
MATHEMATICA
Select[Range[1000], PrimeQ[Fibonacci[5*#]/Fibonacci[#]/5]&]
PROG
(PARI) is(n)=ispseudoprime(fibonacci(5*n)/fibonacci(n)/5) \\ Charles R Greathouse IV, Nov 25 2014
CROSSREFS
KEYWORD
nonn,more,hard
AUTHOR
Vaclav Kotesovec, Jul 18 2013
STATUS
approved