cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A153862 Smallest of four consecutive Fibonacci numbers such that sum of four consecutive Fibonacci numbers is prime number.

Original entry on oeis.org

1, 1, 3, 5, 21, 55, 233, 377, 987, 317811, 5702887, 39088169, 701408733, 12586269025, 591286729879, 72723460248141, 3416454622906707, 43566776258854844738105
Offset: 1

Views

Author

Keywords

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,...

Crossrefs

Programs

  • Mathematica
    a=0;b=1;c=1;lst={};Do[d=Fibonacci[n];p=a+b+c+d;If[PrimeQ[p],AppendTo[lst,a]];a=b;b=c;c=d,{n,3,6!}];lst
    Transpose[Select[Partition[Fibonacci[Range[500]],4,1],PrimeQ[ Total[ #]]&]] [[1]] (* Harvey P. Dale, Jan 11 2013 *)