The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A078735 a(0) = 0, a(1) = 3; a(n+1) = the smallest x such that Fibonacci(x)-Fibonacci(a(n)) is both prime and greater than Fibonacci(a(n))-Fibonacci(a(n-1)). 1
0, 3, 5, 9, 13, 18, 37, 384, 569, 2760, 3293 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Some of the larger entries may only correspond to probable primes.
LINKS
FORMULA
A078727(n) = Fibonacci(a(n))-Fibonacci(a(n-1)).
MATHEMATICA
a[0] = 0; a[1] = 3; a[n_] := a[n] = Block[{d = Fibonacci[a[n - 1]] - Fibonacci[a[n - 2]], f = Fibonacci[a[n - 1]], k = a[n - 1] + 1}, While[Fibonacci[k] - f <= d || !PrimeQ[Fibonacci[k] - f], k++ ]; k]; Do[ Print[ a[n]], {n, 0, 10}] (* Robert G. Wilson v *)
CROSSREFS
A more compact version of A078727.
Cf. A000045.
Sequence in context: A071404 A074133 A215909 * A212530 A004132 A207187
KEYWORD
nonn
AUTHOR
Jack Brennen, Dec 20 2002
EXTENSIONS
a(10) from Robert G. Wilson v, Nov 30 2005
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 12 04:45 EDT 2024. Contains 373321 sequences. (Running on oeis4.)