OFFSET
0,2
LINKS
G. C. Greubel, Table of n, a(n) for n = 0..875
P. Steinbach, Golden fields: a case for the heptagon, Math. Mag. 70 (1997), no. 1, 22-31.
Index entries for linear recurrences with constant coefficients, signature (6,120,-300).
MATHEMATICA
CoefficientList[Series[2x/(1-6x-120x^2+300x^3), {x, 0, 20}], x] (* or *) LinearRecurrence[{6, 120, -300}, {0, 2, 12}, 20] (* Harvey P. Dale, Oct 16 2016 *)
PROG
(PARI) Vec(2*x/(1-6*x-120*x^2+300*x^3)+O(x^99)) \\ Charles R Greathouse IV, Sep 27 2012
(Magma) R<x>:=PowerSeriesRing(Integers(), 30); [0] cat Coefficients(R!( 2*x/(1-6*x-120*x^2+300*x^3) )); // G. C. Greubel, Dec 31 2022
(SageMath)
def A122767_list(prec):
P.<x> = PowerSeriesRing(ZZ, prec)
return P( 2*x/(1-6*x-120*x^2+300*x^3) ).list()
A122767_list(30) # G. C. Greubel, Dec 31 2022
CROSSREFS
KEYWORD
nonn,easy,less
AUTHOR
Roger L. Bagula and Gary W. Adamson, Sep 22 2006
STATUS
approved