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!)
A122767 Expansion of 2*x/(1-6*x-120*x^2+300*x^3). 2
0, 2, 12, 312, 2712, 50112, 532512, 8394912, 99237312, 1443059712, 18048362112, 251686144512, 3243002406912, 44245843149312, 579129504371712, 7811377482074112, 103090052472256512, 1382166761370918912 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
P. Steinbach, Golden fields: a case for the heptagon, Math. Mag. 70 (1997), no. 1, 22-31.
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
Sequence in context: A012377 A012425 A012422 * A260321 A094047 A300045
KEYWORD
nonn,easy,less
AUTHOR
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 April 18 21:51 EDT 2024. Contains 371781 sequences. (Running on oeis4.)