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!)
A059670 Numbers k such that F(k)*2^k + 1 (A006483) is prime, where F(k) is the k-th Fibonacci number. 1
1, 2, 3, 13, 16, 20, 28, 83, 136, 300, 765, 1005, 1395, 3333, 30259 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
a(15) > 17000. - Michael S. Branicky, Oct 02 2022
LINKS
MATHEMATICA
Do[ If[ PrimeQ[ Fibonacci[ n ]*2^n + 1 ], Print[ n ] ], {n, 1, 3000} ]
PROG
(Python)
from sympy import fibonacci, isprime
def ok(n): return isprime(fibonacci(n)*2**n + 1)
print([k for k in range(1400) if ok(k)]) # Michael S. Branicky, Oct 01 2022
CROSSREFS
Sequence in context: A273617 A101541 A299543 * A038975 A059456 A274589
KEYWORD
nonn,more
AUTHOR
Robert G. Wilson v, Feb 05 2001
EXTENSIONS
a(14) from Michael S. Branicky, Oct 02 2022
a(15) from Michael S. Branicky, May 29 2023
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 April 24 03:08 EDT 2024. Contains 371918 sequences. (Running on oeis4.)