OFFSET
1,1
COMMENTS
Also, z/y approx = y/x approx = golden ratio.
LINKS
G. C. Greubel, Table of n, a(n) for n = 1..1000
Index entries for linear recurrences with constant coefficients, signature (8,-8,1).
FORMULA
a(n) = 2*F(2n)*F(2n-1) where F(n) are the Fibonacci numbers (A000045).
G.f.: 2*x*(1-2*x)/((1-x)*(1-7*x+x^2)). - Colin Barker, Apr 13 2014
a(n) = 2 * A081016(n-1). - Wesley Ivan Hurt, Apr 13 2014
EXAMPLE
546^3 = 338 * 546 * 882, 546^3 + 1 = 337 * 547 * 883.
25632^3 = 15842 * 25632 * 41472, 25632^3 + 1 = 15841 * 25633 * 41473.
MAPLE
with(combinat); A240836:=n->2*fibonacci(2*n)*fibonacci(2*n-1); seq(A240836(n), n=1..30); # Wesley Ivan Hurt, Apr 13 2014
MATHEMATICA
Table[2Fibonacci[2n]Fibonacci[2n-1], {n, 30}] (* Wesley Ivan Hurt, Apr 13 2014 *)
PROG
(PARI) vector(30, n, f=fibonacci; 2*f(2*n)*f(2*n-1)) \\ G. C. Greubel, Jul 15 2019
(Magma) F:=Fibonacci; [2*F(2*n)*F(2*n-1): n in [1..30]]; // G. C. Greubel, Jul 15 2019
(Sage) f=fibonacci; [2*f(2*n)*f(2*n-1) for n in (1..30)] # G. C. Greubel, Jul 15 2019
(GAP) F:=Fibonacci;; List([1..30], n-> 2*F(2*n)*F(2*n-1) ); # G. C. Greubel, Jul 15 2019
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Naohiro Nomoto, Apr 12 2014
EXTENSIONS
More terms from Colin Barker, Apr 13 2014
STATUS
approved