OFFSET
0,2
LINKS
Vincenzo Librandi, Table of n, a(n) for n = 0..158
Index entries for linear recurrences with constant coefficients, signature (6,-2).
FORMULA
From Philippe Deléham and Klaus Brockhaus, Nov 05 2008: (Start)
a(n) = 6*a(n-1) - 2*a(n-2) with a(0)=1, a(1)=3.
G.f.: (1-3*x)/(1-6*x+2*x^2). (End)
a(n) = (Sum_{k=0..n} A098158(n,k)*3^(2*k)*7^(n-k))/3^n. - Philippe Deléham, Nov 06 2008
E.g.f.: exp(3*x)*cosh(sqrt(7)*x). - G. C. Greubel, Jan 08 2020
MAPLE
seq(coeff(series((1-3*x)/(1-6*x+2*x^2), x, n+1), x, n), n = 0..25); # G. C. Greubel, Jan 08 2020
MATHEMATICA
Transpose[NestList[Join[{Last[#], 6Last[#]-2First[#]}]&, {1, 3}, 25]] [[1]] (* or *) CoefficientList[Series[(1-3x)/(1-6x+2x^2), {x, 0, 25}], x] (* Harvey P. Dale, Apr 11 2011 *)
LinearRecurrence[{6, -2}, {1, 3}, 25] (* G. C. Greubel, Jan 08 2020 *)
PROG
(Magma) Z<x>:= PolynomialRing(Integers()); N<r7>:=NumberField(x^2-7); S:=[ ((3+r7)^n+(3-r7)^n)/2: n in [0..25] ]; [ Integers()!S[j]: j in [1..#S] ]; // Klaus Brockhaus, Nov 05 2008
(PARI) my(x='x+O('x^25)); Vec((1-3*x)/(1-6*x+2*x^2)) \\ G. C. Greubel, Jan 08 2020
(SageMath)
def A146963_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( (1-3*x)/(1-6*x+2*x^2) ).list()
A146963_list(25) # G. C. Greubel, Jan 08 2020
(GAP) a:=[1, 3];; for n in [3..25] do a[n]:=6*a[n-1]-2*a[n-2]; od; a; # G. C. Greubel, Jan 08 2020
CROSSREFS
KEYWORD
nonn
AUTHOR
Al Hakanson (hawkuu(AT)gmail.com), Nov 03 2008
EXTENSIONS
Extended beyond a(7) by Klaus Brockhaus, Nov 05 2008
Edited by Klaus Brockhaus, Jul 16 2009
STATUS
approved
