login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A153865 Second-to-largest of four consecutive Fibonacci numbers such that sum of those four consecutive Fibonacci numbers is a prime number. 8
2, 3, 8, 13, 55, 144, 610, 987, 2584, 832040, 14930352, 102334155, 1836311903, 32951280099, 1548008755920, 190392490709135, 8944394323791464, 114059301025943970552219 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
1+1+2+3=7, 1+2+3+5=11, 3+5+8+13=29, 5+8+13+21=47, 21+34+55+89=199,...
LINKS
MATHEMATICA
a=0; b=1; c=1; lst={}; Do[d=Fibonacci[n]; p=a+b+c+d; If[PrimeQ[p], AppendTo[lst, c]]; a=b; b=c; c=d, {n, 3, 6!}]; lst
Select[Partition[Fibonacci[Range[0, 200]], 4, 1], PrimeQ[Total[#]]&][[All, 3]] (* Harvey P. Dale, Aug 21 2021 *)
CROSSREFS
Sequence in context: A077055 A327868 A145929 * A369774 A331820 A368855
KEYWORD
nonn
AUTHOR
EXTENSIONS
Definition modified by Harvey P. Dale, Jul 04 2022
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 11:39 EDT 2024. Contains 371969 sequences. (Running on oeis4.)