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”).

A121401
a(n) = ((sqrt(3)+1)^n+(sqrt(3)-1)^n)^2/2^(n+1).
1
2, 3, 8, 27, 98, 363, 1352, 5043, 18818, 70227, 262088, 978123, 3650402, 13623483, 50843528, 189750627, 708158978, 2642885283, 9863382152, 36810643323, 137379191138, 512706121227, 1913445293768, 7141075053843, 26650854921602
OFFSET
0,1
FORMULA
a(n) = ((2+sqrt(3))^n+(2-sqrt(3))^n)/2.
a(n) = A001075(n)+1.
From R. J. Mathar, Aug 07 2008: (Start)
a(n) = A102206(n-1).
G.f.: (1-3*x)*(x-2)/((x-1)*(x^2-4*x+1)). (End)
a(n) = 5*a(n-1) - 5*a(n-2) + a(n-3). - Wesley Ivan Hurt, Jan 16 2024
MATHEMATICA
Table[((-1+Sqrt[3])^n+(1+Sqrt[3])^n)^2/(2^(n+1)), {n, 0, 25}]
LinearRecurrence[{5, -5, 1}, {2, 3, 8}, 25] (* Ray Chandler, Jan 27 2014 *)
CROSSREFS
Sequence in context: A183948 A041503 A086613 * A318895 A093858 A080568
KEYWORD
nonn,easy
AUTHOR
Zak Seidov, Sep 06 2006
STATUS
approved