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.

A163855 Primes p such that p+6 is a Fibonacci number.

Original entry on oeis.org

2, 7, 83, 227, 24157811, 2971215067, 53316291167, 5527939700884751, 99194853094755491, 420196140727489667, 4660046610375530303, 83621143489848422971, 1066340417491710595814572163
Offset: 1

Views

Author

Keywords

Crossrefs

Programs

  • Mathematica
    Clear[lst,a,f,n,p]; a=6;lst={};Do[f=Fibonacci[n];If[PrimeQ[p=f-a]&&p>1,AppendTo[lst,p]],{n,3*6!}];lst
    Select[Fibonacci[Range[5,200]]-6,PrimeQ] (* Harvey P. Dale, Jun 01 2024 *)