A163853 Primes 4 less than some Fibonacci number.
17, 229, 373, 983, 4177, 6761, 17707, 4052739537877, 190392490709131, 19740274219868223163, 354224848179261915071, 11825896447871834976429068423, 3807901929474025356630904134047
Offset: 1
Keywords
Links
- Harvey P. Dale, Table of n, a(n) for n = 1..23
Programs
-
Mathematica
Clear[lst,a,f,n,p]; a=4;lst={};Do[f=Fibonacci[n];If[PrimeQ[p=f-a]&&p> 1,AppendTo[lst,p]],{n,3*6!}];lst Select[Fibonacci[Range[4,300]]-4,PrimeQ] (* Harvey P. Dale, Jul 12 2025 *)
Extensions
Some indices to Fibonacci and prime sequences added by R. J. Mathar, Sep 17 2009
Comments