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.

A153890 Second-to-largest of five consecutive Fibonacci numbers such that sum of five consecutive Fibonacci numbers is prime number.

Original entry on oeis.org

2, 5, 8, 34, 377, 610, 10946, 514229, 832040, 3524578, 86267571272, 17167680177565, 37889062373143906, 420196140727489673, 12200160415121876738, 59425114757512643212875125
Offset: 1

Views

Author

Keywords

Comments

0+1+1+2=3=7, 1+2+3+5+8=19, 2+3+5+8=13=31, 8+13+21+34+55=131, 89+144+233+377+610=1453, 144+233+377+610+987=2351,...

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