A153890 Second-to-largest of five consecutive Fibonacci numbers such that sum of five consecutive Fibonacci numbers is prime number.
2, 5, 8, 34, 377, 610, 10946, 514229, 832040, 3524578, 86267571272, 17167680177565, 37889062373143906, 420196140727489673, 12200160415121876738, 59425114757512643212875125
Offset: 1
Keywords
Crossrefs
Programs
-
Mathematica
a=0;b=1;c=1;d=2;lst={};Do[e=Fibonacci[n];p=a+b+c+d+e;If[PrimeQ[p],AppendTo[lst,d]];a=b;b=c;c=d;d=e,{n,4,6!}];lst
Comments