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.

A241699 Number of Carlitz compositions of n with exactly nine descents.

This page as a plain text file.
%I A241699 #6 Apr 28 2014 09:21:18
%S A241699 55,491,2689,11608,42795,140589,422681,1183166,3121247,7830626,
%T A241699 18812643,43515886,97340687,211323653,446587109,921008294,1857606992,
%U A241699 3670974168,7119426996,13569286673,25448188412,47013582854,85641353036,153964392218,273387455379
%N A241699 Number of Carlitz compositions of n with exactly nine descents.
%C A241699 No two adjacent parts of a Carlitz composition are equal.
%H A241699 Alois P. Heinz, <a href="/A241699/b241699.txt">Table of n, a(n) for n = 27..1000</a>
%p A241699 b:= proc(n, i) option remember; `if`(n=0, 1,
%p A241699        convert(series(add(`if`(i=j, 0, b(n-j, j)*
%p A241699       `if`(j<i, x, 1)), j=1..n), x, 10), polynom))
%p A241699     end:
%p A241699 a:= n-> coeff(b(n, 0), x, 9):
%p A241699 seq(a(n), n=27..55);
%Y A241699 Column k=9 of A241701.
%K A241699 nonn
%O A241699 27,1
%A A241699 _Alois P. Heinz_, Apr 27 2014