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!)
A017269 Expansion of 1/((1-3x)(1-5x)(1-6x)). 1
1, 14, 133, 1070, 7861, 54614, 365653, 2385950, 15282421, 96547814, 603612373, 3743478830, 23070427381, 141471930614, 864083198293, 5260771611710, 31946034826741, 193583363883014, 1171036345331413 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
From Vincenzo Librandi, Jun 26 2013: (Start)
a(n) = 14*a(n-1) - 63*a(n-2) + 90*a(n-3).
a(n) = 11*a(n-1) - 30*a(n-2) + 3^n. (End)
a(n) = (2*6^(n+2) - 3*5^(n+2) + 3^(n+2))/6. - Yahia Kahloune, Aug 12 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 3 x) (1 - 5 x) (1 - 6 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jun 26 2013 *)
LinearRecurrence[{14, -63, 90}, {1, 14, 133}, 30] (* Harvey P. Dale, Sep 20 2013 *)
PROG
(Magma) I:=[1, 14, 133]; [n le 3 select I[n] else 14*Self(n-1)-63*Self(n-2)+90*Self(n-3): n in [1..20]]; /* or */ m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-3*x)*(1-5*x)*(1-6*x)))); // Vincenzo Librandi, Jun 26 2013
(PARI) x='x+O('x^20); Vec(1/((1-3*x)*(1-5*x)*(1-6*x))) \\ Altug Alkan, Sep 23 2018
CROSSREFS
Sequence in context: A328785 A113976 A022738 * A021079 A174563 A233467
KEYWORD
nonn,easy
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 June 5 01:34 EDT 2024. Contains 373102 sequences. (Running on oeis4.)