cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A257934 Expansion of 1/(1-x-x^2-x^3-x^4+x^5+x^6+x^7).

Original entry on oeis.org

1, 1, 2, 4, 8, 14, 26, 48, 89, 163, 300, 552, 1016, 1868, 3436, 6320, 11625, 21381, 39326, 72332, 133040, 244698, 450070, 827808, 1522577, 2800455, 5150840, 9473872, 17425168, 32049880, 58948920, 108423968, 199422769, 366795657, 674642394, 1240860820, 2282298872, 4197802086, 7720961778
Offset: 0

Views

Author

David Neil McGrath, May 13 2015

Keywords

Comments

This sequence counts partially ordered partitions of (n) into parts (1,2,3,4) in which the position (order) of the 4's are unimportant. For example the permutations of (43421) are counted as permutations of (321)=6.

Examples

			a(6)=26; these are (42=24),(411=141=114),(33),(321=six),(3111=four),(222),(2211=six),(21111=five),(111111).
		

Crossrefs

Programs

  • PARI
    Vec(1 / ((x-1)*(x+1)*(x^2+1)*(x^3+x^2+x-1)) + O(x^100)) \\ Colin Barker, May 17 2015

Formula

a(n)= a(n-1) + a(n-2) + a(n-3) + a(n-4) - a(n-5) - a(n-6) - a(n-7).
G.f.: 1 / ((x-1)*(x+1)*(x^2+1)*(x^3+x^2+x-1)). - Colin Barker, May 17 2015

Extensions

Missing term (6320) inserted by Colin Barker, May 17 2015
Showing 1-1 of 1 results.