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!)
A144901 Expansion of x/((1-x-x^3)*(1-x)^7). 8
0, 1, 8, 36, 121, 339, 837, 1882, 3937, 7777, 14664, 26609, 46762, 79990, 133731, 219253, 353507, 561851, 882051, 1370154, 2109105, 3221386, 4887550, 7373395, 11069801, 16551126, 24660802, 36636795, 54295489, 80301195, 118561150, 174804431, 257430410 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
Index entries for linear recurrences with constant coefficients, signature (8,-28,57,-77,77,-63,43,-22,7,-1).
FORMULA
G.f.: x/((1-x-x^3)*(1-x)^7).
From G. C. Greubel, Jul 27 2022: (Start)
a(n) = Sum_{j=0..floor((n+6)/3)} binomial(n-2*j+6, j+7).
a(n) = A099567(n+6, 7). (End)
MAPLE
a:= n-> (Matrix(10, (i, j)-> if i=j-1 then 1 elif j=1 then [8, -28, 57, -77, 77, -63, 43, -22, 7, -1][i] else 0 fi)^n)[1, 2]: seq(a(n), n=0..40);
MATHEMATICA
CoefficientList[Series[x/((1-x-x^3)(1-x)^7), {x, 0, 40}], x] (* Vincenzo Librandi, Jun 06 2013 *)
PROG
(Magma)
A144901:= func< n | n eq 0 select 0 else (&+[Binomial(n-2*j+6, j+7): j in [0..Floor((n+6)/3)]]) >;
[A144901(n): n in [0..40]]; // G. C. Greubel, Jul 27 2022
(SageMath)
def A144901(n): return sum(binomial(n-2*j+6, j+7) for j in (0..((n+6)//3)))
[A144901(n) for n in (0..40)] # G. C. Greubel, Jul 27 2022
CROSSREFS
8th column of A144903.
Cf. A099567.
Sequence in context: A145457 A145136 A290892 * A054470 A347751 A341222
KEYWORD
nonn,easy
AUTHOR
Alois P. Heinz, Sep 24 2008
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 16 17:08 EDT 2024. Contains 371749 sequences. (Running on oeis4.)