login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A118841
Numbers k such that ceiling(phi^k) is prime.
1
1, 2, 3, 4, 8, 16
OFFSET
1,2
COMMENTS
a(7) if it exists is greater than 250000. - Mark Rodenkirch, Feb 22 2020
LINKS
Eric Weisstein's World of Mathematics, Phi-Prime
MATHEMATICA
Select[Range[20], PrimeQ[Ceiling[GoldenRatio^#]]&] (* James C. McMahon, Sep 14 2024 *)
PROG
(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
CROSSREFS
Sequence in context: A364595 A352817 A189740 * A126294 A339973 A224912
KEYWORD
nonn
AUTHOR
Eric W. Weisstein, May 01 2006
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
STATUS
approved