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 A292175 #6 Sep 10 2017 19:46:20 %S A292175 2621,9459,26167,69404,188735,558151,1745634,5935728,20786804, %T A292175 77416352,219059475,578513498,1500419043,3908857765,10470345790, %U A292175 28385741484,79729201108,221303407539,630847591899,1653827513009,4173815556603,10415200154855,25901062216475 %N A292175 Number of permutations p of [n] such that 0p has a nonincreasing jump sequence beginning with nine. %C A292175 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 A292175 Alois P. Heinz, <a href="/A292175/b292175.txt">Table of n, a(n) for n = 9..2000</a> %e A292175 a(9) = 2621: 912345678, 913245678, 913425678, 913452678, 913456278, 913456728, 913456782, 913524678, 913526478, 913526748, ..., 975846321, 975864321, 976543218, 976543281, 976543821, 976548321, 976584321, 976854321, 978654321, 987654321. %p A292175 b:= proc(u, o, t) option remember; `if`(u+o=0, 1, %p A292175 add(b(u-j, o+j-1, j), j=1..min(t, u))+ %p A292175 add(b(u+j-1, o-j, j), j=1..min(t, o))) %p A292175 end: %p A292175 a:= n-> b(0, n, 9)-b(0, n, 8): %p A292175 seq(a(n), n=9..50); %Y A292175 Column k=9 of A291684. %K A292175 nonn %O A292175 9,1 %A A292175 _Alois P. Heinz_, Sep 10 2017