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

A162814
a(n) = 6*a(n-1)-6*a(n-2) for n > 1; a(0) = 5, a(1) = 18.
2
5, 18, 78, 360, 1692, 7992, 37800, 178848, 846288, 4004640, 18950112, 89672832, 424336320, 2007980928, 9501867648, 44963320320, 212768716032, 1006832374272, 4764381949440, 22545297451008, 106685493009408, 504841173350400
OFFSET
0,1
COMMENTS
Binomial transform of A162563. Inverse binomial transform of A162815.
FORMULA
a(n) = ((5+sqrt(3))*(3+sqrt(3))^n+(5-sqrt(3))*(3-sqrt(3))^n)/2.
G.f.: (5-12*x)/(1-6*x+6*x^2).
MATHEMATICA
LinearRecurrence[{6, -6}, {5, 18}, 40] (* Harvey P. Dale, Mar 26 2022 *)
PROG
(Magma) [ n le 2 select 13*n-8 else 6*Self(n-1)-6*Self(n-2): n in [1..22] ];
CROSSREFS
Sequence in context: A027134 A227451 A017960 * A082034 A259340 A241713
KEYWORD
nonn
AUTHOR
Al Hakanson (hawkuu(AT)gmail.com) and Klaus Brockhaus, Jul 14 2009
STATUS
approved