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!)
A109652 a(n) = prime(A000201(n)). 2
2, 5, 7, 13, 19, 23, 31, 37, 43, 53, 59, 67, 73, 79, 89, 97, 103, 109, 113, 131, 137, 149, 157, 163, 173, 181, 191, 197, 199, 223, 229, 233, 241, 257, 263, 271, 277, 283, 307, 311, 317, 331, 347, 353, 359, 373, 383, 389, 401, 409, 421, 433, 439, 449, 457, 463 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) ~ phi*n*log n, where phi = (1+sqrt(5))/2. - Charles R Greathouse IV, Apr 19 2015
PROG
(PARI) a(n) = prime(n*(1+sqrt(5))\2); \\ Michel Marcus, Aug 28 2013
(Python)
from math import isqrt
from sympy import prime
def A109652(n): return prime(n+isqrt(5*n**2)>>1) # Chai Wah Wu, Aug 10 2022
CROSSREFS
Sequence in context: A333242 A045353 A038985 * A045354 A103806 A019359
KEYWORD
nonn,less
AUTHOR
E.J.P. Vening, Aug 05 2005
EXTENSIONS
Better description from Joseph Biberstine and Graeme McRae, Aug 05 2006
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 March 29 08:13 EDT 2024. Contains 371265 sequences. (Running on oeis4.)