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!)
A271429 Primes of the form L(k)*L(k+1)-1, where L(k) is the k-th Lucas number (A000032). 1
2, 11, 197, 521, 3571, 20633237, 54018521, 370248451, 119218851371, 5600748293801, 10420180999117162547, 412670427844921037470771, 258899611203303418721656157249445530046830073044201152332257717521 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
11 is in the sequence because 11 = 3*4-1 = L(2)*L(3)-1.
MATHEMATICA
Array[LucasL@ # LucasL[# + 1] - 1 &, {160}] /. n_ /; CompositeQ@ n -> Nothing (* Michael De Vlieger, Apr 07 2016 *)
Select[Times@@@Partition[LucasL[Range[200]], 2, 1]-1, PrimeQ] (* Harvey P. Dale, May 14 2020 *)
PROG
(PARI)
lucas(n) = fibonacci(n+1) + fibonacci(n-1)
L=List(); for(k=1, 200, if(isprime(p=lucas(k)*lucas(k+1)-1), listput(L, p))); Vec(L)
CROSSREFS
Sequence in context: A132871 A140314 A226052 * A051663 A348859 A358649
KEYWORD
nonn
AUTHOR
Colin Barker, Apr 07 2016
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 August 6 20:52 EDT 2024. Contains 374983 sequences. (Running on oeis4.)