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.

A244171 Number of compositions of n in which the minimal multiplicity of parts equals 8.

This page as a plain text file.
%I A244171 #4 Jun 21 2014 16:55:52
%S A244171 1,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,12871,24310,68068,75582,169728,
%T A244171 203490,395352,490314,874312,1105885,1809523,2319967,3553845,4495635,
%U A244171 6706767,8379039,12014983,15065623,20868122,25855787,35250728,43103655,57415602,70106277
%N A244171 Number of compositions of n in which the minimal multiplicity of parts equals 8.
%H A244171 Alois P. Heinz, <a href="/A244171/b244171.txt">Table of n, a(n) for n = 8..400</a>
%p A244171 b:= proc(n, i, p, k) option remember; `if`(n=0, p!, `if`(i<1, 0,
%p A244171       add(b(n-i*j, i-1, p+j, k)/j!, j=[0, $max(1, k)..n/i])))
%p A244171     end:
%p A244171 a:= n-> b(n$2, 0, 8) -b(n$2, 0, 9):
%p A244171 seq(a(n), n=8..55);
%Y A244171 Column k=8 of A242451.
%K A244171 nonn
%O A244171 8,17
%A A244171 _Alois P. Heinz_, Jun 21 2014