OFFSET
0,1
REFERENCES
N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..16
MAPLE
L:= n-> (<<0|1>, <1|1>>^(n). <<2, 1>>)[1, 1]:
a:= n-> L(L(n+1)+1):
seq(a(n), n=0..12); # Alois P. Heinz, Jun 01 2016
MATHEMATICA
LucasL[1 +LucasL[Range[16]]] (* G. C. Greubel, Nov 14 2022 *)
PROG
(Magma) [Lucas(1+Lucas(n+1)): n in [0..15]]; // G. C. Greubel, Nov 14 2022
(SageMath) [lucas_number2(1+lucas_number2(n+1, 1, -1), 1, -1) for n in range(15)] # G. C. Greubel, Nov 14 2022
CROSSREFS
KEYWORD
nonn
AUTHOR
EXTENSIONS
a(8) onwards corrected by Sean A. Irvine, Jun 01 2016
Name edited by Alois P. Heinz, Jun 01 2016
STATUS
approved