A240926 a(n) = 2 + L(2*n) = 2 + A005248(n), n >= 0, with the Lucas numbers (A000032).
4, 5, 9, 20, 49, 125, 324, 845, 2209, 5780, 15129, 39605, 103684, 271445, 710649, 1860500, 4870849, 12752045, 33385284, 87403805, 228826129, 599074580, 1568397609, 4106118245, 10749957124, 28143753125, 73681302249, 192900153620, 505019158609
Offset: 0
Links
- G. C. Greubel, Table of n, a(n) for n = 0..2375
- Wolfdieter Lang, Proof of the coincidence of a(n) with the touching circle problem (part II).
- Wolfdieter Lang, Figures for various touching circle problems.
- Kival Ngaokrajang, Illustration of initial terms.
- Index entries for sequences related to Chebyshev polynomials.
- Index entries for linear recurrences with constant coefficients, signature (4,-4,1).
Crossrefs
Programs
-
Magma
[2+Lucas(2*n): n in [0..40]]; // Vincenzo Librandi, Oct 08 2015
-
Mathematica
Table[2 + LucasL[2 n], {n, 0, 50}] (* Vincenzo Librandi, Oct 08 2015 *)
-
PARI
vector(100, n, n--; 2 + fibonacci(2*n-1) + fibonacci(2*n+1)) \\ Altug Alkan, Oct 08 2015
Formula
Conjectures (proved in the next entry) from Colin Barker, Aug 25 2014 (and Aug 27 2014): (Start)
a(n) = (2 + ((1/2)*(3-sqrt(5)))^n + ((1/2)*(3+sqrt(5)))^n).
a(n) = 4*a(n-1) - 4*a(n-2) + a(n-3).
G.f.: -(5*x^2-11*x+4) / ((x-1)*(x^2-3*x+1)). (End)
From Wolfdieter Lang, Aug 26 2014: (Start)
a(n) = 2 + S(n, 3) - S(n-2, 3) = 2 + 2*S(n, 3) - 3*S(n-1, 3).
a(n) = 3*a(n-1) - a(n-2) - 2, n >= 1, with a(-1)= 5 and a(0) = 4 (from the S(n, 3) recurrence or from A005248).
The first of the Colin Barker conjectures above is true because of the Binet-de Moivre formula for L(2*n) (see the Jul 24 2003 Dennis P. Walsh comment on A005248). With phi = (1+sqrt(5))/2, use 1/phi = phi-1, phi^2 = phi+1, (phi-1)^2 = 2 - phi.
His third conjecture (the g.f.) follows from the g.f. of A005248 by adding 2/(1-x).
His second conjecture (recurrence) with input a(-3) = 20, a(-2) = 9 and a(-1) = 5 (from the above given recurrence) leads to his g.f. with the expanded denominator. Thus all three conjectures are true. (End)
a(n) = A005592(n) + 3, with n > 0. - Zino Magri, Feb 16 2015
a(n) = (phi^n + phi^(-n))^2, where phi = A001622 = (1 + sqrt(5))/2. - Diego Rattaggi, Jun 10 2020
Sum_{k>=0} 1/a(k) = A338303. - Amiram Eldar, Oct 22 2020
Extensions
Edited: name changed (after proof has been given in part II of the W. Lang link), comments rewritten, cross refs. and link to Chebyshev index added. - Wolfdieter Lang, Aug 26 2014
Comments