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 A259452 #14 Oct 16 2017 02:01:46 %S A259452 1,1,252,578005,6190034016,214265281290061,19157603395806362772, %T A259452 3800502511986185228829385,1498722661993096106927612109936, %U A259452 1081056808393919319749313795137642521,1336319624105519211256870506149168604698792 %N A259452 Number of 5 up, 5 down, 5 up, ... permutations of length 5n+1. %D A259452 P. R. Stein, personal communication. %H A259452 Alois P. Heinz, <a href="/A259452/b259452.txt">Table of n, a(n) for n = 0..100</a> %H A259452 P. R. Stein & N. J. A. Sloane, <a href="/A005981/a005981.pdf">Correspondence, 1975</a> %p A259452 b:= proc(u, o, t) option remember; `if`(u+o=0, 1, add(`if`( %p A259452 t=5, b(o-j, u+j-1, 1), b(u+j-1, o-j, t+1)), j=1..o)) %p A259452 end: %p A259452 a:= n-> b(0, 5*n+1, 0): %p A259452 seq(a(n), n=0..10); # _Alois P. Heinz_, Jul 02 2015 %t A259452 k = 5; b[u_, o_, t_] := b[u, o, t] = If[u + o == 0, 1, Sum[If[t == k, b[o - j, u + j - 1, 1], b[u + j - 1, o - j, t + 1]], {j, 1, o}]]; Array[b[0, k # + 1, 0] &, 10] (* _Michael De Vlieger_, Oct 15 2017, after _Jean-François Alcover_ at A005983 *) %Y A259452 Cf. A005981-A005983. %K A259452 nonn %O A259452 0,3 %A A259452 _N. J. A. Sloane_, Jun 28 2015 %E A259452 More terms from _Alois P. Heinz_, Jul 02 2015