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

A162560
a(n) = (4+sqrt(3))*(3+sqrt(3))^n + (4-sqrt(3))*(3-sqrt(3))^n.
1
3, 8, 30, 132, 612, 2880, 13608, 64368, 304560, 1441152, 6819552, 32270400, 152705088, 722608128, 3419418240, 16180860672, 76568654592, 362326763520, 1714548653568, 8113331340288, 38392696120320, 181676188680192
OFFSET
-1,1
COMMENTS
Equals b(k) = ((9+sqrt(3))*(3-sqrt(3))^k+(9-sqrt(3))*(3+sqrt(3))^k)/6 for k >= 0. - Klaus Brockhaus, Jul 14 2009
Third binomial transform of A162852.
FORMULA
a(n) = 6*a(n-1) - 6*a(n-2) for n > 0; a(-1) = 3, a(0) = 8.
G.f.: (3-10*x)/(x*(1-6*x+6*x^2)).
PROG
(Magma) Z<x>:=PolynomialRing(Integers()); N<r>:=NumberField(x^2-3); S:=[ ((4+r)*(3+r)^n+(4-r)*(3-r)^n): n in [-1..20] ]; [ Integers()!S[j]: j in [1..#S] ]; // Klaus Brockhaus, Jul 14 2009
CROSSREFS
Cf. A162852 (3, -1, 9, -3, 27, -9, 81, ...).
Sequence in context: A360991 A361135 A348662 * A293250 A096161 A161779
KEYWORD
nonn,easy
AUTHOR
Al Hakanson (hawkuu(AT)gmail.com), Jul 06 2009
EXTENSIONS
Edited and extended beyond a(5)=13608 by Klaus Brockhaus, Jul 18 2009
STATUS
approved