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!)
A233514 Numbers n such that all numbers of the form Fib(n)/d + d are prime (or nonexistent), where Fib(n) is the n-th Fibonacci number and d is a nontrivial divisor of Fib(n). 1
3, 4, 5, 7, 9, 11, 13, 15, 17, 23, 29, 43, 47, 83, 131, 137, 359, 431, 433, 449, 509, 569, 571, 2971, 4723, 5387, 9311, 9677 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Damir et al. conjecture that this sequence is finite.
LINKS
Mohamed Taoufiq Damir, Bernadette Faye, Florian Luca, and Amadou Tall, Fibonacci numbers with prime sums of complementary divisors, Integers 14 (2014), A5.
MATHEMATICA
f2[n_] := Module[{d = Rest[Most[Divisors[n]]]}, n/d + d]; Select[Range[3, 200], And @@ PrimeQ[f2[Fibonacci[#]]] &]
PROG
(PARI) is(n)=my(F=fibonacci(n)); if(n%6==0 || n%25==0 || n%56==0 || n%91==0 || n%110==0 || n%153==0 || !issquarefree(F), return(0)); fordiv(F, d, if(d>1 && d<F && !isprime(F/d+d), return(0))); 1 \\ Charles R Greathouse IV, Feb 04 2014
CROSSREFS
Not a subsequence of A037917.
Sequence in context: A161153 A128201 A347301 * A096262 A308168 A193339
KEYWORD
nonn,more
AUTHOR
T. D. Noe, Jan 31 2014
EXTENSIONS
a(18)-a(24) from Charles R Greathouse IV, Feb 04 2014
Terms 2971 to 9677 from Don Reble. - N. J. A. Sloane, Nov 04 2022
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 June 29 22:01 EDT 2024. Contains 373856 sequences. (Running on oeis4.)