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!)
A164359 Expansion of (1 - x^2)^3 / ((1 - x)^3 * (1 - x^3)) in powers of x. 4
1, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3, 2, 3, 3 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Euler transform of length 3 sequence [ 3, -3, 1].
Moebius transform is length 3 sequence [ 3, 0, -1].
a(-n) = a(n) for all n in Z. a(n+3) = a(n) unless n=0 or n=-3. a(3*n) = 2 unless n=0. a(3*n + 1) = a(3*n + 2) = 3.
G.f.: -1 + (1/3) * ( 8 / (1 - x) - (2 + x) / (1 + x + x^2) ).
a(n) = A244893(n) if n>1. - Michael Somos, Apr 17 2015
EXAMPLE
G.f. = 1 + 3*x + 3*x^2 + 2*x^3 + 3*x^4 + 3*x^5 + 2*x^6 + 3*x^7 + 3*x^8 + 2*x^9 + ...
MATHEMATICA
a[ n_] := -Boole[n == 0] + 2 + KroneckerSymbol[ 9, n]; (* Michael Somos, Apr 17 2015 *)
CoefficientList[Series[(1-x^2)^3/((1-x)^3*(1-x^3)), {x, 0, 120}], x] (* or *) LinearRecurrence[{0, 0, 1}, {1, 3, 3, 2}, 120] (* or *) PadRight[{1}, 120, {2, 3, 3}] (* Harvey P. Dale, Aug 16 2021 *)
PROG
(PARI) {a(n) = -(n==0) + 2 + kronecker(9, n)};
CROSSREFS
Cf. A244893.
Sequence in context: A075017 A060586 A076662 * A178307 A327465 A079063
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Aug 13 2009
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 May 2 19:04 EDT 2024. Contains 372203 sequences. (Running on oeis4.)