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!)
A019618 Expansion of 1/((1-4*x)*(1-7*x)*(1-10*x)). 1
1, 21, 303, 3745, 42711, 464961, 4918663, 51086385, 524227671, 5336085601, 54018566823, 544793838225, 5480212349431, 55028108373441, 551863246323783, 5529708675105265, 55374624529091991, 554289026917064481 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = (2*4^(n+1) -7^(n+2) +5*10^(n+1))/9. - R. J. Mathar, Nov 11 2012
a(0)=1, a(1)=21, a(2)=303; for n>2, a(n) = 21*a(n-1) -138*a(n-2) +280*a(n-3). - Vincenzo Librandi, Jul 03 2013
a(n) = 17*a(n-1) -70*a(n-2) +4^n. - Vincenzo Librandi, Jul 03 2013
MATHEMATICA
CoefficientList[Series[1 / ((1 - 4 x) (1 - 7 x) (1 - 10 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 03 2013 *)
LinearRecurrence[{21, -138, 280}, {1, 21, 303}, 30] (* Harvey P. Dale, Mar 09 2017 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-4*x)*(1-7*x)*(1-10*x)))); /* or */ I:=[1, 21, 303]; [n le 3 select I[n] else 21*Self(n-1)-138*Self(n-2)+280*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 03 2013
(PARI) x='x+O('x^30); Vec(1/((1-4*x)*(1-7*x)*(1-10*x))) \\ G. C. Greubel, Aug 24 2018
CROSSREFS
Sequence in context: A077513 A079517 A021784 * A081553 A021524 A021268
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 April 27 12:04 EDT 2024. Contains 372019 sequences. (Running on oeis4.)