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.

A064759 Numbers k such that k! - Fibonacci(k) is prime.

Original entry on oeis.org

11, 13, 178, 7822
Offset: 1

Views

Author

Jason Earls, Oct 17 2001

Keywords

Comments

178! - Fibonacci(178) certified prime with Primo.
No more terms through 10^4. - Ryan Propper, Dec 30 2006
No more terms through 2*10^4. - Michael S. Branicky, Dec 24 2024

Crossrefs

Cf. A064738.

Programs

  • PARI
    for(n=1,300, if(isprime(n!-fibonacci(n)),print(n)))

Extensions

a(4) from Ryan Propper, Dec 30 2006