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!)
A017857 Expansion of 1/(1 - x^7 - x^8). 4
1, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 2, 1, 0, 0, 0, 0, 1, 3, 3, 1, 0, 0, 0, 1, 4, 6, 4, 1, 0, 0, 1, 5, 10, 10, 5, 1, 0, 1, 6, 15, 20, 15, 6, 1, 1, 7, 21, 35, 35, 21, 7, 2, 8, 28, 56, 70, 56, 28, 9, 10, 36, 84, 126, 126, 84, 37 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,16
COMMENTS
Number of compositions of n into parts 7 and 8. - Joerg Arndt, Jun 28 2013
LINKS
FORMULA
a(n) = a(n-7) + a(n-8) for n > 7. - Vincenzo Librandi, Jun 28 2013
MATHEMATICA
CoefficientList[Series[1 / (1 - Total[x^Range[7, 8]]), {x, 0, 70}], x] (* Vincenzo Librandi, Jun 28 2013 *)
LinearRecurrence[{0, 0, 0, 0, 0, 0, 1, 1}, {1, 0, 0, 0, 0, 0, 0, 1}, 80] (* Harvey P. Dale, Mar 19 2019 *)
PROG
(Magma) m:=70; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/(1-x^7-x^8))); /* or */ I:=[1, 0, 0, 0, 0, 0, 0, 1]; [n le 8 select I[n] else Self(n-7)+Self(n-8): n in [1..70]]; // Vincenzo Librandi, Jun 28 2013
(PARI) x='x+O('x^66); Vec(1/(1-x^7-x^8)) \\ Altug Alkan, Oct 07 2018
CROSSREFS
Sequence in context: A280457 A349903 A308118 * A127842 A127512 A263787
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)