OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..4784
M. Berg, Phi, the golden ratio (to 4599 decimal places) and Fibonacci numbers, Fibonacci Quarterly, 4 (1966), 157-162.
EXAMPLE
The first prime > phi^6 = 17.94427... is 19, so a(6) = 19.
MATHEMATICA
p[n_] := Module[{r, i}, r = 2; i = 1; While[r <= n, i = i + 1; r = Prime[i]]; r]; Table[p[GoldenRatio^n], {n, 1, 35}]
NextPrime[GoldenRatio^Range[40]] (* Harvey P. Dale, Dec 06 2013 *)
PROG
(PARI) a(n)=nextprime(((1+sqrt(5))/2)^n) \\ Charles R Greathouse IV, Jul 29 2011
CROSSREFS
KEYWORD
nonn
AUTHOR
Michel Lagneau, Nov 19 2010
STATUS
approved