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.

A243236 Number of isoscent sequences of length n with exactly ten ascents.

This page as a plain text file.
%I A243236 #7 Jun 01 2014 18:46:20
%S A243236 1854,663390,72572427,4229760773,164869021176,4846616066912,
%T A243236 115525788526251,2341346575945183,41696673590069251,
%U A243236 668272802442309946,9812868808904564866,133849038379000364897,1714455118957116764366,20802230173239523620513,240794713489411990019752
%N A243236 Number of isoscent sequences of length n with exactly ten ascents.
%H A243236 Joerg Arndt and Alois P. Heinz, <a href="/A243236/b243236.txt">Table of n, a(n) for n = 16..100</a>
%p A243236 b:= proc(n, i, t) option remember; `if`(n<1, 1, expand(add(
%p A243236       `if`(j>i, x, 1) *b(n-1, j, t+`if`(j=i, 1, 0)), j=0..t+1)))
%p A243236     end:
%p A243236 a:= n-> coeff(b(n-1, 0$2), x, 10):
%p A243236 seq(a(n), n=16..35);
%Y A243236 Column k=10 of A242351.
%K A243236 nonn
%O A243236 16,1
%A A243236 _Joerg Arndt_ and _Alois P. Heinz_, Jun 01 2014