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!)
A316275 Lucas analog to A101361. 2
2, 3, 3, 7, 18, 123, 2207, 271443, 599074578, 162614600673847, 97418273275323406890123, 15841633607002416873831447357889638603, 1543264591854508694059691789796980188767738307671225999544322 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
This is the sequence defined by the third-order non-linear recurrence a(n+1) = a(n)*a(n-1) - a(n-2) and a(0)=2, a(1)=3, a(2)=3.
LINKS
René Gy, Sequence in which adding 2 produces a square, Math StackExchange.
FORMULA
a(n) = A000032(2*A000045(n)) = Lucas(2*Fibonacci(n)).
MATHEMATICA
Table[LucasL[2 Fibonacci[n]], {n, 0, 10}]
RecurrenceTable[{a[0]==2, a[1]==a[2]==3, a[n+1]==a[n]a[n-1]-a[n-2]}, a, {n, 20}] (* Harvey P. Dale, Mar 28 2020 *)
PROG
(PARI) a(n)={my(t=2*fibonacci(n)); fibonacci(t + 1) + fibonacci(t - 1)} \\ Andrew Howroyd, Mar 01 2020
CROSSREFS
Sequence in context: A121875 A036251 A176022 * A113031 A127582 A157144
KEYWORD
nonn
AUTHOR
René Gy, Nov 23 2018
EXTENSIONS
Terms a(11) and beyond from Andrew Howroyd, Mar 01 2020
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 April 19 15:34 EDT 2024. Contains 371794 sequences. (Running on oeis4.)