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!)
A163157 Primes of the form 1 + some Golden Rectangle Number. 2
2, 3, 7, 41, 1871, 4599466948725481982057, 153554501132879618787551305057 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Primes of the form 1+A001654(k) for some k, as actually generated by k=1, 2, 3, 5, 9, 53, 71,....
Also primes of the form Fibonacci(k)*Fibonacci(k+1)+1. - Colin Barker, Apr 08 2016
The next term (a(8)) has 1995 digits. - Harvey P. Dale, May 15 2018
LINKS
MATHEMATICA
q=0; lst={}; Do[f=Fibonacci[n]; If[PrimeQ[f*q+1], AppendTo[lst, f*q+1]]; q=f, {n, 3*6!}]; lst
Select[Times@@@Partition[Fibonacci[Range[100]], 2, 1]+1, PrimeQ] (* Harvey P. Dale, May 15 2018 *)
PROG
(PARI) for(k=1, 1000, if(isprime(p=fibonacci(k)*fibonacci(k+1)+1), print1(p, ", "))) \\ Colin Barker, Apr 08 2016
CROSSREFS
Sequence in context: A102604 A119662 A265776 * A260819 A000945 A261564
KEYWORD
nonn
AUTHOR
EXTENSIONS
Slightly edited by R. J. Mathar, Jul 25 2009
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 May 6 22:48 EDT 2024. Contains 372297 sequences. (Running on oeis4.)