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.

A064738 Numbers k such that k! + Fibonacci(k) is prime.

Original entry on oeis.org

1, 2, 62, 71, 227, 778, 809, 1753, 15329
Offset: 1

Views

Author

Jason Earls, Oct 17 2001

Keywords

Comments

The three values 62, 71 and 227 were certified prime with Primo.

Crossrefs

Programs

  • Mathematica
    Do[m = n; If[PrimeQ[n! + Fibonacci[n]], Print[n]], {n, 0, 10^3} ]
    Do[If[PrimeQ[n! + Fibonacci[n]], Print[n]], {n, 1, 1800}] (* Ryan Propper, Nov 05 2005 *)
  • PARI
    for(n=1,300, if(isprime(n!+fibonacci(n)),print(n)))

Extensions

More terms from Robert G. Wilson v, Oct 18 2001
a(8) from Ryan Propper, Nov 05 2005
a(9) from Michael S. Branicky, Sep 21 2024