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 A153761 #17 Aug 27 2016 20:37:44 %S A153761 0,0,0,0,0,0,0,0,0,0,3628800,43545600,283046400,1320883200,4953312000, %T A153761 15850598400,44910028800,115482931200,274271961600,609493248000, %U A153761 1279935820800,4644633666390681600,106826520356358566400,1281918194457262387200,10682651561168805120000 %N A153761 Number of degree-n permutations of order exactly 11. %H A153761 Alois P. Heinz, <a href="/A153761/b153761.txt">Table of n, a(n) for n = 1..200</a> %F A153761 E.g.f.: -exp(x)+exp(x+1/11*x^11). - _Alois P. Heinz_, Feb 16 2013 %p A153761 a:= proc(n) option remember; %p A153761 `if`(n<11, 0, a(n-1)+(1+a(n-11))*(n-1)!/(n-11)!) %p A153761 end: %p A153761 seq(a(n), n=1..30); # _Alois P. Heinz_, Feb 16 2013 %t A153761 Rest[CoefficientList[Series[-Exp[x] + Exp[x + 1/11*x^11], {x, 0, 25}], x]*Range[0, 25]!] (* _G. C. Greubel_, Aug 27 2016 *) %Y A153761 Column k=11 of A057731. - _Alois P. Heinz_, Feb 16 2013 %K A153761 nonn %O A153761 1,11 %A A153761 _Franz Vrabec_, Jan 01 2009 %E A153761 More terms from _Alois P. Heinz_, Feb 16 2013