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!)
A019041 Expansion of 1/((1-4x)(1-5x)(1-12x)). 2
1, 21, 313, 4125, 51601, 630741, 7630633, 91892685, 1104403201, 13261555461, 159183299353, 1910426955645, 22926277062001, 275121159824181, 3301483361726473, 39617948633641005, 475416129363276001 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2*4^n - 25*5^n/7 + 18*12^n/7. - R. J. Mathar, Jun 29 2013
From Vincenzo Librandi, Jul 02 2013: (Start)
a(n) = 21*a(n-1) - 128*a(n-2) + 240*a(n-3) for n > 2; a(0)=1, a(1)=21, a(2)=313.
a(n) = 17*a(n-1) - 60*a(n-2) + 4^n. (End)
MATHEMATICA
CoefficientList[Series[1 / ((1 - 4 x) (1 - 5 x) (1 - 12 x)), {x, 0, 20}], x] (* Vincenzo Librandi, Jul 02 2013 *)
LinearRecurrence[{21, -128, 240}, {1, 21, 313}, 20] (* Harvey P. Dale, Mar 09 2022 *)
PROG
(Magma) m:=20; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-4*x)*(1-5*x)*(1-12*x)))); /* or */ I:=[1, 21, 313]; [n le 3 select I[n] else 21*Self(n-1)-128*Self(n-2)+240*Self(n-3): n in [1..20]]; // Vincenzo Librandi, Jul 02 2013
CROSSREFS
Sequence in context: A157088 A226990 A016321 * A021214 A016318 A017954
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 25 03:15 EDT 2024. Contains 371964 sequences. (Running on oeis4.)