login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A171969 Smallest prime greater than phi^n. 1
2, 3, 5, 7, 13, 19, 31, 47, 79, 127, 211, 331, 523, 853, 1367, 2207, 3581, 5779, 9371, 15131, 24481, 39607, 64081, 103687, 167771, 271451, 439217, 710663, 1149857, 1860503, 3010363, 4870861, 7881221, 12752053, 20633279 (list; graph; refs; listen; history; text; internal format)
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
Sequence in context: A217884 A101045 A114847 * A075580 A077132 A138184
KEYWORD
nonn
AUTHOR
Michel Lagneau, Nov 19 2010
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified August 18 23:41 EDT 2024. Contains 375284 sequences. (Running on oeis4.)