[go: up one dir, main page]

login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A176968
Expansion of x*( 1+2*x-x^2-6*x^3 ) / ( 1-9*x^2+12*x^4 ).
0
1, 2, 8, 12, 60, 84, 444, 612, 3276, 4500, 24156, 33156, 178092, 244404, 1312956, 1801764, 9679500, 13283028, 71360028, 97926084, 526086252, 721938420, 3878455932, 5322332772, 28593068364, 39237733908, 210796144092
OFFSET
1,2
COMMENTS
The ratio a(n+1)/a(n) alternates between 5.3722813232690143299 and 1.3722813232690143299.
FORMULA
Given the auxiliary b(0)=b(1)=1 and b(n) = b(n-1)/2 + b(n-2) *sqrt(5-(-1)^n*4) /2, a(n) =2^(n-1)*b(n).
a(n) = a(n-1)+6*a(n-2) if n is odd. a(n) = a(n-1)+2*a(n-2) if n is even. - R. J. Mathar, Jun 18 2014
MATHEMATICA
a[1] := 1; a[2]=1;
a[n_] := a[n] = a[n - 1]/2 +a[n - 2]*Sqrt[(5 + 4*(-1)^(n - 1))]//2:
Table[2^(n - 1)*a[n], {n, 1, 30}]
CROSSREFS
Sequence in context: A280092 A083546 A013190 * A308935 A126192 A272720
KEYWORD
nonn,easy
AUTHOR
Roger L. Bagula, Apr 29 2010
STATUS
approved