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

A124191
a(n) = ((2 + 3*sqrt(2))^n - (2 - 3*sqrt(2))^n)/(2*sqrt(2)).
0
0, 3, 12, 90, 528, 3372, 20880, 130728, 815232, 5091120, 31777728, 198386592, 1238434560, 7731150528, 48262685952, 301286851200, 1880825008128, 11741315949312, 73296813911040, 457565678934528, 2856418110492672, 17831591947054080, 111316221335113728
OFFSET
1,2
FORMULA
From Philippe Deléham, Dec 12 2006: (Start)
a(n) = 4*a(n-1) + 14*a(n-2) for n >= 2; a(0)=0, a(1)=3.
G.f.: 3x/(1-4*x-14*x^2). (End)
MATHEMATICA
Expand[Table[((2 + 3Sqrt[2])^n - (2 - 3Sqrt[2])^n)/(2Sqrt[2]), {n, 0, 30}]]
LinearRecurrence[{4, 14}, {0, 3}, 50] (* Amiram Eldar, Mar 29 2020 *)
CROSSREFS
Sequence in context: A367143 A361583 A361584 * A065087 A366733 A305870
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Dec 10 2006
EXTENSIONS
More terms from Amiram Eldar, Mar 29 2020
STATUS
approved