OFFSET
0,3
COMMENTS
1, 4, 5, 24, 29, 140, ...= numerators in convergents to (sqrt(8) - 2) = continued fraction [0; 1, 4, 1, 4, 1, 4, ...]; where sqrt(8) - 2 = 0.828427124... = the inradius of a right triangle with hypotenuse 6, legs sqrt(32) and 2. Denominators of convergents to [0; 1, 4, 1, 4, 1, 4, ...] = A041011 starting (1, 5, 6, 29, 35, ...). - Gary W. Adamson, Dec 22 2007
This is a strong divisibility sequence, that is, gcd(a(n), a(m)) = a(gcd(n,m)) for all natural numbers n and m. - Peter Bala, May 12 2014
LINKS
J. L. Ramirez, F. Sirvent, A q-Analogue of the Bi-Periodic Fibonacci Sequence, J. Int. Seq. 19 (2016) # 16.4.6, t_n at a=4, b=1.
Index entries for linear recurrences with constant coefficients, signature (0,6,0,-1).
FORMULA
a(n)*a(n+1) = A046729(n).
a(1) = 1, a(2n) = 4*a(2n-1) + a(2n-2); a(2n-1) = a(2n-2) + a(2n-3). Given the 2 X 2 matrix X = [1, 4; 1, 5], [a(2n-1), a(2n)] = top row of X^n. The sequence starting (1, 4, 5, 24, 29, ...) = numerators in continued fraction [0; 1, 4, 1, 4, 1, 4, ...] = (sqrt(8) - 2) = 0.828427124... E.g., X^3 = [29, 140; 35, 169], where 29/35, 140/169 are convergents to (sqrt(8)-2). - Gary W. Adamson, Dec 22 2007
From R. J. Mathar, Jul 08 2009: (Start)
a(n) = 6*a(n-2) - a(n-4).
G.f.: -x*(-1-4*x+x^2)/((x^2-2*x-1)*(x^2+2*x-1)). (End)
From Peter Bala, May 12 2014: (Start)
For n odd, a(n) = (alpha^n - beta^n)/(alpha - beta), and for n even, a(n) = 4*(alpha^n - beta^n)/(alpha^2 - beta^2), where alpha = 1 + sqrt(2) and beta = 1 - sqrt(2).
a(n) = Product_{j = 1..floor(n/2)} ( 4 + 4*cos^2(j*Pi/n) ) for n >= 1. (End)
MATHEMATICA
Numerator[NestList[(4/(4+#))&, 0, 60]] (* Vladimir Joseph Stephan Orlovsky, Apr 13 2010 *)
PROG
(PARI) a(n)=([0, 1, 0, 0; 0, 0, 1, 0; 0, 0, 0, 1; -1, 0, 6, 0]^n*[0; 1; 4; 5])[1, 1] \\ Charles R Greathouse IV, Nov 13 2015
CROSSREFS
KEYWORD
nonn,easy
AUTHOR
Charlie Marion, Nov 11 2003
EXTENSIONS
Corrected by T. D. Noe, Nov 08 2006
Definition corrected by Jonathan Sondow, Jun 06 2014
STATUS
approved