The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A127213 a(n) = 6^n*Lucas(n), where Lucas = A000204. 10
6, 108, 864, 9072, 85536, 839808, 8118144, 78941952, 765904896, 7437339648, 72196614144, 700923912192, 6804621582336, 66060990332928, 641332318961664, 6226189565755392, 60445100877152256, 586813429630107648 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = Trace of matrix [({6,6},{6,0})^n].
a(n) = 6^n * Trace of matrix [({1,1},{1,0})^n].
From Colin Barker, Sep 02 2013: (Start)
a(n) = 6*a(n-1) + 36*a(n-2).
G.f.: -6*x*(12*x+1)/(36*x^2+6*x-1). (End)
MATHEMATICA
Table[6^n Tr[MatrixPower[{{1, 1}, {1, 0}}, x]], {x, 1, 20}]
Table[6^n*LucasL[n], {n, 1, 50}] (* G. C. Greubel, Dec 18 2017 *)
LinearRecurrence[{6, 36}, {6, 108}, 20] (* Harvey P. Dale, Jan 20 2024 *)
PROG
(PARI) x='x+O('x^30); Vec(-6*x*(12*x+1)/(36*x^2+6*x-1)) \\ G. C. Greubel, Dec 18 2017
(Magma) [6^n*Lucas(n): n in [1..30]]; // G. C. Greubel, Dec 18 2017
CROSSREFS
Sequence in context: A083432 A006453 A251667 * A129003 A099138 A230540
KEYWORD
nonn,easy
AUTHOR
Artur Jasinski, Jan 09 2007
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 June 4 22:04 EDT 2024. Contains 373102 sequences. (Running on oeis4.)