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.

A118841 Numbers k such that ceiling(phi^k) is prime.

Original entry on oeis.org

1, 2, 3, 4, 8, 16
Offset: 1

Views

Author

Eric W. Weisstein, May 01 2006

Keywords

Comments

a(7) if it exists is greater than 250000. - Mark Rodenkirch, Feb 22 2020

Crossrefs

Programs

  • Mathematica
    Select[Range[20],PrimeQ[Ceiling[GoldenRatio^#]]&] (* James C. McMahon, Sep 14 2024 *)
  • PARI
    c(n) = 3*fibonacci(n-1) + fibonacci(n-2) + (n % 2); \\ A169986(n) for n >= 1
    for(n=1,10^7,if(ispseudoprime(c(n)),print1(n,", ")))
    \\ Joerg Arndt, Feb 22 2020

Extensions

a(7)-a(8) from Charles R Greathouse IV, Jul 30 2011
a(9)-a(11) from Charles R Greathouse IV, Aug 01 2011
Incorrect a(7)-a(11) removed by Mark Rodenkirch, Feb 22 2020