Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
A095223
a(n) is the least Fibonacci number such that a(n) - a(n-1) is prime; a(0)=1.
0
1, 3, 5, 8, 13, 144, 233, 2584, 4181, 46368, 75025, 14930352, 7778742049, 18547707689471986212190138521399707760, 55835073295300465536628086585786672357234389
OFFSET
0,2
COMMENTS
Conjecture: The sequence is infinite.
EXAMPLE
a(5)=144 because 21 - 13, 34 - 13, 55 - 13, 89 - 13 are composite (8,21,42,76), while 144 - 13 = 131 is prime.
MAPLE
with(combinat): a[0]:=1: for n from 1 to 17 do b:=proc(k) if isprime(fibonacci(k)-a[n-1])=true then fibonacci(k) else fi end: a[n]:=[seq(b(k), k=1..400)][1] od: seq(a[n], n=0..17); # Emeric Deutsch, Sep 03 2005
CROSSREFS
Cf. A000045.
Sequence in context: A296378 A177231 A259597 * A268515 A374084 A070948
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Jun 10 2004
EXTENSIONS
More terms from Emeric Deutsch, Sep 03 2005
STATUS
approved