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!)
A116732 a(n) = a(n-1) + a(n-2) + a(n-3) - a(n-4). 6
0, 0, 0, 1, 1, 2, 4, 6, 11, 19, 32, 56, 96, 165, 285, 490, 844, 1454, 2503, 4311, 7424, 12784, 22016, 37913, 65289, 112434, 193620, 333430, 574195, 988811, 1702816, 2932392, 5049824, 8696221, 14975621, 25789274, 44411292, 76479966, 131704911, 226806895 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,6
COMMENTS
This sequence is an example of a "symmetric" quartic recurrence and has some expected divisibility properties.
a(n-3) counts partially ordered partitions of (n-3) into parts 1,2,3 where only the order of the adjacent 1's and 3's are unimportant (see example). - David Neil McGrath, Jul 25 2015
LINKS
Jarib R. Acosta, Yadira Caicedo, Juan P. Poveda, José L. Ramírez, Mark Shattuck, Some New Restricted n-Color Composition Functions, J. Int. Seq., Vol. 22 (2019), Article 19.6.4.
FORMULA
G.f.: x^3/(x^4 - x^3 - x^2 - x + 1).
EXAMPLE
Partially ordered partitions of (n-3) into parts 1,2,3 where only the order of adjacent 1's and 3's are unimportant. E.g., a(n-3)=a(6)=19. These are (33),(321),(312),(231),(123),(132),(3111),(2211),(1122),(1221),(2112),(2121),(1212),(21111),(12111),(11211),(11121),(11112),(111111). - David Neil McGrath, Jul 25 2015
MATHEMATICA
LinearRecurrence[{1, 1, 1, -1}, {0, 0, 0, 1}, 40] (* Vladimir Joseph Stephan Orlovsky, Feb 02 2012 *)
CoefficientList[Series[x^3/(1-x-x^2-x^3+x^4), {x, 0, 40}], x] (* Harvey P. Dale, Mar 25 2018 *)
PROG
(PARI) v=[0, 0, 0, 1]; for(i=1, 40, v=concat(v, v[#v]+v[#v-1]+v[#v-2]-v[#v-3])); v \\ Derek Orr, Aug 27 2015
CROSSREFS
Close to A000786 (& A048239), A115992, A115993. Cf. A116201.
Sequence in context: A115992 A115993 A136424 * A367736 A048239 A000786
KEYWORD
nonn,easy
AUTHOR
R. K. Guy, Mar 23 2008
EXTENSIONS
More terms from Max Alekseyev, Mar 23 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 25 10:01 EDT 2024. Contains 371967 sequences. (Running on oeis4.)