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!)
A107327 Prime Fibonacci sequence: each term is the prime with index equal to the sum of the previous two terms. 3
2, 3, 11, 43, 251, 1931, 19237, 239347, 3627181, 65467067, 1381237531, 33547347529, 926069157329, 28743895441379, 993969849468227, 37991369810680411, 1593993722216820553 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = prime(a(n-1) + a(n-2)); a(1) = 2; a(2) = 3.
EXAMPLE
a(5) = prime(11 + 43) = prime(54) = 251.
MATHEMATICA
t = {2, 3}; Do[AppendTo[t, Prime[t[[-1]] + t[[-2]]]], {9}]; t (* T. D. Noe, May 09 2013 *)
nxt[{a_, b_}]:={b, Prime[a+b]}; NestList[nxt, {2, 3}, 13][[All, 1]] (* Harvey P. Dale, Jul 18 2020 *)
PROG
(PARI) a(n) = if(n<3, prime(n), prime(a(n-1) + a(n-2)));
vector(10, n, a(n)) \\ Altug Alkan, Oct 02 2015
CROSSREFS
Sequence in context: A051087 A051081 A051093 * A162101 A128455 A260159
KEYWORD
nonn,more
AUTHOR
Christopher M. Tomaszewski (cmt1288(AT)comcast.net), May 22 2005
EXTENSIONS
Terms a(7)-a(11) corrected by Alex Ratushnyak, May 09 2013
a(12)-a(14) from Amiram Eldar, Feb 03 2019
a(15)-a(17) from Jinyuan Wang, Nov 21 2020
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.)