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.

A244170 Number of compositions of n in which the minimal multiplicity of parts equals 7.

This page as a plain text file.
%I A244170 #4 Jun 21 2014 16:52:33
%S A244170 1,0,0,0,0,0,0,1,0,0,0,0,0,0,3433,6435,17875,19448,43264,50388,96968,
%T A244170 119713,208803,256597,422375,512524,785708,976990,1423465,1737759,
%U A244170 2488824,3001562,4141412,5012060,6722158,407104665,1108110431,3914660472,10999975393
%N A244170 Number of compositions of n in which the minimal multiplicity of parts equals 7.
%H A244170 Alois P. Heinz, <a href="/A244170/b244170.txt">Table of n, a(n) for n = 7..400</a>
%p A244170 b:= proc(n, i, p, k) option remember; `if`(n=0, p!, `if`(i<1, 0,
%p A244170       add(b(n-i*j, i-1, p+j, k)/j!, j=[0, $max(1, k)..n/i])))
%p A244170     end:
%p A244170 a:= n-> b(n$2, 0, 7) -b(n$2, 0, 8):
%p A244170 seq(a(n), n=7..55);
%Y A244170 Column k=7 of A242451.
%K A244170 nonn
%O A244170 7,15
%A A244170 _Alois P. Heinz_, Jun 21 2014