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.
%I A292176 #5 Sep 10 2017 20:03:17 %S A292176 10061,37702,107175,285492,786489,2249024,6929078,22322520,77416352, %T A292176 274792342,1035050705,2962838350,7926847142,20648853479,54254560137, %U A292176 143941539439,393399319076,1083862520072,3084318416024,8650938117110,24829005575685,65609605382112 %N A292176 Number of permutations p of [n] such that 0p has a nonincreasing jump sequence beginning with ten. %C A292176 An up-jump j occurs at position i in p if p_{i} > p_{i-1} and j is the index of p_i in the increasingly sorted list of those elements in {p_{i}, ..., p_{n}} that are larger than p_{i-1}. A down-jump j occurs at position i in p if p_{i} < p_{i-1} and j is the index of p_i in the decreasingly sorted list of those elements in {p_{i}, ..., p_{n}} that are smaller than p_{i-1}. First index in the lists is 1 here. %H A292176 Alois P. Heinz, <a href="/A292176/b292176.txt">Table of n, a(n) for n = 10..2000</a> %p A292176 b:= proc(u, o, t) option remember; `if`(u+o=0, 1, %p A292176 add(b(u-j, o+j-1, j), j=1..min(t, u))+ %p A292176 add(b(u+j-1, o-j, j), j=1..min(t, o))) %p A292176 end: %p A292176 a:= n-> b(0, n, 10)-b(0, n, 9): %p A292176 seq(a(n), n=10..50); %Y A292176 Column k=10 of A291684. %K A292176 nonn %O A292176 10,1 %A A292176 _Alois P. Heinz_, Sep 10 2017