login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
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 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
The ratio a(n+1)/a(n) alternates between 5.3722813232690143299 and 1.3722813232690143299.
LINKS
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

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)