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!)
A081323 a(n) = L(P(n)), where L = Lucas numbers A000032, P = Pell numbers A000129. 1
2, 1, 3, 11, 322, 1149851, 425730551631123, 208406472252232726621841472637412401, 18490864749804416780204061487408593066264011288598603441079481989361240762271783793922 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
LINKS
FORMULA
a:= n-> (<<1|1>, <1|0>>^((<<2|1>, <1|0>>^n)[1, 2]). <<2, -1>>)[1, 1]:
seq(a(n), n=0..8); # Alois P. Heinz, Sep 19 2019
MATHEMATICA
l[n_] := l[n] = l[n - 1] + l[n - 2]; l[0] = 2; l[1] = 1; p[n_] := p[n] = 2p[n - 1] + p[n - 2]; p[0] = 0; p[1] = 1; Table[l[p[n]], {n, 0, 8}]
LucasL[LinearRecurrence[{2, 1}, {0, 1}, 10]] (* Harvey P. Dale, Sep 19 2019 *)
CROSSREFS
Sequence in context: A369242 A187111 A122050 * A173958 A175243 A168217
KEYWORD
easy,nonn
AUTHOR
Mario Catalani (mario.catalani(AT)unito.it), Mar 18 2003
EXTENSIONS
Typo in a(8) corrected by Harvey P. Dale, Sep 19 2019
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 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)