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 A217677 #7 Nov 01 2014 22:30:49 %S A217677 1,101,6063,284431,11592572,433386000,15343169775,524963196399, %T A217677 17597634740010,583499409451862,19269396089593156,636977450902768356, %U A217677 21156201514272916444,708006643310351350076,23925259865186482138965,817728884509460388159381 %N A217677 Number of permutations in S_n containing an increasing subsequence of length 10. %H A217677 Alois P. Heinz, <a href="/A217677/b217677.txt">Table of n, a(n) for n = 10..200</a> %F A217677 a(n) = A214152(n,10) = A000142(n)-A072133(n) = A000142(n)-A214015(n,9). %p A217677 b:= proc(n) option remember; %p A217677 `if`(n<5, n!, ((-1110790863+(1520978576+(1772290401+(607308786+ %p A217677 (101671498+(9464664+(500874+(14124+165*n)*n)*n)*n)*n)*n)*n)*n)*b(n-1) %p A217677 -(1129886062*n+559908333*n^2+111239576*n^3+10655238*n^4+8778*n^6 %p A217677 +491700*n^5 +353895381)*(n-1)^2*b(n-2) +(258011271+234066216*n %p A217677 +58221266*n^2+5463876*n^3 +172810*n^4)*(n-1)^2*(n-2)^2*b(n-3) %p A217677 -9*(4070430+1504292*n+117469*n^2)* (n-1)^2*(n-2)^2*(n-3)^2*b(n-4) %p A217677 +893025*(n-1)^2*(n-2)^2*(n-3)^2*(n-4)^2*b(n-5)) / %p A217677 ((n+20)^2*(n+8)^2*(n+18)^2*(n+14)^2)) %p A217677 end: %p A217677 a:= n-> n! -b(n): %p A217677 seq(a(n), n=10..30); %Y A217677 Cf. A000142, A072133, A214015, A214152. %K A217677 nonn %O A217677 10,2 %A A217677 _Alois P. Heinz_, Oct 10 2012