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!)
A029129 Expansion of 1/((1-x)*(1-x^8)*(1-x^9)*(1-x^12)). 1
1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 3, 3, 4, 4, 4, 4, 5, 6, 7, 7, 8, 9, 9, 9, 11, 12, 13, 14, 15, 16, 17, 17, 19, 21, 22, 23, 26, 27, 28, 29, 31, 33, 35, 36, 39, 42, 43, 44, 48, 50, 52, 54, 57, 60, 63, 64, 68, 72, 74, 76, 81, 84 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,9
COMMENTS
Number of partitions of n into parts 1, 8, 9, and 12. - Joerg Arndt, Jul 04 2014
LINKS
Index entries for linear recurrences with constant coefficients, signature (1, 0, 0, 0, 0, 0, 0, 1, 0, -1, 0, 1, -1, 0, 0, 0, -1, 1, 0, -1, 0, 1, 0, 0, 0, 0, 0, 0, 1, -1).
MAPLE
# this requires Maple 17 or later
N:= 10000: # to get a(0) to a(N)
with(SignalProcessing):
A1:= Array(0..N, 1):
A8:=Array(0..N, i -> `if`(i mod 8 = 0, 1, 0)):
A9:=Array(0..N, i -> `if`(i mod 9 = 0, 1, 0)):
A12:= Array(0..N, i -> `if`(i mod 12 = 0, 1, 0)):
B:= Convolution(A1, A8)[1..N+1]:
B:= Convolution(B, A9)[1..N+1]:
B:= Convolution(B, A12)[1..N+1]:
A:= map(round, ArrayTools:-Reshape(B, 0..N)):
seq(A[n], n=0..N); # Robert Israel, Jun 03 2014
MATHEMATICA
CoefficientList[Series[1/((1-x)*(1-x^8)*(1-x^9)*(1-x^12)), {x, 0, 20}], x] (* Vaclav Kotesovec, Jul 04 2014 *)
PROG
(Maxima) a(n):=floor((2*n^3+90*n^2+21*n+13023)/10368+(n+15)*(-1)^n/384 +((n+10)*(1-(-1)^n)/2+5)*((-1)^floor(n/2))/96 +(floor(n/3) -floor((n-1)/3))*(n+3)/108 +(floor((n+2)/9) +floor((n+1)/9) +floor(n/9))/3)$ makelist(a(n), n, 0, 10000); /* Tani Akinari, Jul 03 2014 */
(Magma) m:=70; R<x>:=PowerSeriesRing(Integers(), m); Coefficients(R!(1/((1-x)*(1-x^8)*(1-x^9)*(1-x^12)))); // Bruno Berselli, Jul 04 2014
(Sage) m = 70; L.<x> = PowerSeriesRing(ZZ, m); f = 1/((1-x)*(1-x^8)*(1-x^9)*(1-x^12)); print(f.coefficients()) # Bruno Berselli, Jul 04 2014
(PARI) Vec(1/((1-x)*(1-x^8)*(1-x^9)*(1-x^12)) + O(x^70)) \\ Michel Marcus, Jul 04 2014
CROSSREFS
Sequence in context: A087838 A057627 A013940 * A087842 A201206 A101776
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Dec 11 1999
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.)