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.

A243083 Number of compositions of n into parts with multiplicity not larger than 5.

This page as a plain text file.
%I A243083 #5 May 29 2014 16:56:59
%S A243083 1,1,2,4,8,16,31,63,120,240,459,897,1716,3294,6258,11852,22283,41647,
%T A243083 78197,144013,264485,489979,892277,1612753,2933983,5288025,9454944,
%U A243083 16891074,30121434,53179092,93997401,164816943,289313718,502617530,877419533,1514746093
%N A243083 Number of compositions of n into parts with multiplicity not larger than 5.
%C A243083 Number of compositions of n avoiding the pattern 111111.
%H A243083 Alois P. Heinz, <a href="/A243083/b243083.txt">Table of n, a(n) for n = 0..1000</a>
%p A243083 b:= proc(n, i, p) option remember; `if`(n=0, p!, `if`(i<1, 0,
%p A243083       add(b(n-i*j, i-1, p+j)/j!, j=0..min(n/i, 5))))
%p A243083     end:
%p A243083 a:= n-> b(n$2, 0):
%p A243083 seq(a(n), n=0..50);
%Y A243083 Column k=5 of A243081.
%K A243083 nonn
%O A243083 0,3
%A A243083 _Alois P. Heinz_, May 29 2014