login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A013979 Expansion of 1/(1-x^2-x^3-x^4) = 1/( (1+x)*(1-x-x^3) ). 7
1, 0, 1, 1, 2, 2, 4, 5, 8, 11, 17, 24, 36, 52, 77, 112, 165, 241, 354, 518, 760, 1113, 1632, 2391, 3505, 5136, 7528, 11032, 16169, 23696, 34729, 50897, 74594, 109322, 160220, 234813, 344136, 504355, 739169, 1083304, 1587660, 2326828, 3410133, 4997792 (list; graph; refs; listen; history; text; internal format)
OFFSET

0,5

COMMENTS

For n>0, number of ordered partitions of n into 2's, 3's and 4's. - Len Smiley (smiley(AT)math.uaa.alaska.edu), May 08 2001

Diagonal sums of trinomial triangle A071675 (Riordan array (1, x(1+x+x^2))). - Paul Barry, Feb 15 2005

REFERENCES

C. K. Fan, A Hecke algebra quotient and some combinatorial applications. J. Algebraic Combin. 5 (1996), no. 3, 175-189.

C. K. Fan, Structure of a Hecke algebra quotient. J. Amer. Math. Soc. 10 (1997), no. 1, 139-167. [Page 156, f^0_n.]

LINKS

_Reinhard Zumkeller_, Table of n, a(n) for n = 0..1000

Index to sequences with linear recurrences with constant coefficients, signature (0,1,1,1).

FORMULA

a(n)=sum{k=0..floor(n/2), sum{i=0..floor(n/2), C(k, 2i+3k-n)C(2i+3k-n, i)}}; - Paul Barry, Feb 15 2005

a(n) = a(n-4) + a(n-3) + a(n-2). - Jon Schoenfield (jonscho(AT)hiwaay.net), Aug 07 2006

a(n)+a(n+1) = A000930(n+1). - R. J. Mathar, Mar 14 2011

MATHEMATICA

a=b=c=0; d=1; lst={d}; Do[AppendTo[lst, e=a+b+c]; a=b; b=c; c=d; d=e, {n, 0, 5!}]; lst [From Vladimir Joseph Stephan Orlovsky, May 28 2010]

PROG

(Haskell)

a013979 n = a013979_list !! n

a013979_list = 1 : 0 : 1 : 1 : zipWith (+) a013979_list

   (zipWith (+) (tail a013979_list) (drop 2 a013979_list))

-- Reinhard Zumkeller, Mar 23 2012

CROSSREFS

Cf. A060945 (Ordered partitions into 1's, 2's and 4's), A107458.

First differences of A023435.

Cf. A001634.

Sequence in context: A109434 A089299 A017910 * A107458 A060280 A006206

Adjacent sequences:  A013976 A013977 A013978 * A013980 A013981 A013982

KEYWORD

nonn,easy

AUTHOR

N. J. A. Sloane.

EXTENSIONS

More terms from Vladimir Joseph Stephan Orlovsky, May 28 2010

STATUS

approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified May 20 21:27 EDT 2013. Contains 225464 sequences.