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!)
A291987 Expansion of 1/((1-x)*(1-2*x^2)*(1-3*x^3)*(1-4*x^4)). 3
1, 1, 3, 6, 14, 20, 45, 69, 135, 210, 378, 576, 1057, 1561, 2667, 4110, 6902, 10220, 17109, 25485, 41583, 62250, 99666, 147960, 238633, 350881, 553107, 825126, 1292942, 1899620, 2977821, 4381269, 6791127, 10025730, 15415722, 22645296, 34970545, 51140521 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,2,1,1,-10,-2,-4,12,24,-24).
FORMULA
a(n) = a(n-1) + 2*a(n-2) + a(n-3) + a(n-4) - 10*a(n-5) - 2*a(n-6) - 4*a(n-7) + 12*a(n-8) + 24*a(n-9) - 24*a(n-10) for n >= 11. - Muniru A Asiru, Sep 07 2017
PROG
(PARI) Vec(1/((1-x)*(1-2*x^2)*(1-3*x^3)*(1-4*x^4)) + O(x^100))
(GAP)
a:=[1, 1, 3, 6, 14, 20, 45, 69, 135, 210];;
for n in [11..10^2] do a[n]:=a[n-1]+2*a[n-2]+a[n-3]+a[n-4]-10*a[n-5]-2*a[n-6]-4*a[n-7]+12*a[n-8]+24*a[n-9]-24*a[n-10]; od; a; # Muniru A Asiru, Sep 07 2017
CROSSREFS
Sequence in context: A281025 A109757 A075189 * A200823 A093866 A056596
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Sep 07 2017
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 20 00:26 EDT 2024. Contains 371798 sequences. (Running on oeis4.)