OFFSET
0,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..10000
Benoit Cloitre and Jeffrey Shallit, Some Fibonacci-Related Sequences, arXiv:2312.11706 [math.CO], 2023.
MATHEMATICA
a[n_] := Round[n*GoldenRatio^2]; Array[a, 50, 0] (* Amiram Eldar, Jun 17 2022 *)
PROG
(PARI) a(n)=round(n*(sqrt(5)+3)/2) \\ Charles R Greathouse IV, Aug 28 2016
(Magma) [Round((3+Sqrt(5))*n/2): n in [0..80]]; // G. C. Greubel, Sep 13 2023
(SageMath) [round(golden_ratio^2*n) for n in range(81)] # G. C. Greubel, Sep 13 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
STATUS
approved