login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A121534 Lucas-Fibonacci prime twins: Prime Lucas numbers L(k) such that Fibonacci numbers F(k) are prime too. 13
7, 11, 29, 199, 521, 3571, 6643838879 (list; graph; refs; listen; history; text; internal format)
OFFSET

1,1

COMMENTS

Indices for Lucas-Fibonacci prime twins are A080327[n] = {4,5,7,11,13,17,47,...}. Corresponding Fibonacci-Lucas prime twins are A121533[n] = {3,5,13,89,233,1597,2971215073,...}. Probable primes Fibonacci[148091] and Lucas[148091] are the next probable Fibonacci-Lucas and Lucas-Fibonacci prime twins. They have 30949 and 30950 digits.

General recurrence is a(n)=(a(1)-1)*a(n-1)-a(n-2), a(1)>=4, lim n->infinity a(n)= x*(k*x+1)^n, k =(a(1)-3), x=(1+sqrt((a(1)+1)/(a(1)-3)))/2. Examples in OEIS: a(1)=4 gives A002878, primes in it A121534. a(1)=5 gives A001834, primes in it A086386. a(1)=6 gives A030221, primes in it not in OEIS {29,139,3191,...}. a(1)=7 gives A002315, primes in it A088165. a(1)=8 gives A033890, primes in it not in OEIS (does there exist any ?). a(1)=9 gives A057080, primes in it not in OEIS {71,34649,16908641,...}. a(1)=10 gives A057081, primes in it not in OEIS {389806471,192097408520951,...}. [From Ctibor O. Zizka, Sep 02 2008]

LINKS

Table of n, a(n) for n=1..7.

EXAMPLE

a(1) = 7 because Lucas(4) = 7 is prime and Fibonacci(4) = 3 is prime too.

MATHEMATICA

Do[f=Fibonacci[n]; l=Fibonacci[n-1]+Fibonacci[n+1]; If[PrimeQ[f]&&PrimeQ[l], Print[{f, l}]], {n, 10000}]

nn=1000; Transpose[Select[Thread[{Fibonacci[Range[nn]], LucasL[ Range[nn]]}], And@@PrimeQ[#]&]][[2]] (* From Harvey P. Dale, Jul 08 2011 *)

CROSSREFS

Cf. A121534, A121535, A000045, A005478, A001605, A001606, A000032, A000204, A005479, A080327.

Sequence in context: A153867 A153325 A109907 * A083363 A027707 A046861

Adjacent sequences:  A121531 A121532 A121533 * A121535 A121536 A121537

KEYWORD

nonn

AUTHOR

Alexander Adamchuk, Aug 05 2006

EXTENSIONS

Corrected a(1) and example -- Harvey P. Dale, Jul 08 2011

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 19 00:29 EDT 2013. Contains 225428 sequences.