A134790 Floor(prime Fibonacci(Prime(k))/Prime(k)).
0, 1, 1, 8, 17, 93, 1245, 17732, 10081265, 63217341, 1195118711985005, 8140003186959622868813528, 139669360584622467747806013, 1324290912910022899017738237233285189213652972190967113265372469016533360
Offset: 1
Keywords
Examples
17732 is in the sequence because floor(514229/29) = 17732, where 29 is the 10th prime number and 514229 = Fibonacci(29) is also a prime. - _Bruno Berselli_, Jul 10 2012
Links
- Vincenzo Librandi, Table of n, a(n) for n = 1..22
Programs
-
Mathematica
k = {}; Do[If[PrimeQ[Fibonacci[Prime[n]]], AppendTo[k, Floor[Fibonacci[Prime[n]]/Prime[n]]]], {n, 1, 100}]; k
Comments