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 A130648 #11 Feb 08 2017 05:34:41 %S A130648 1,1,0,3,8,25,184,721,9904,66753,691088,5973121,84925048,940427137, %T A130648 12801319816,186556383105,3174772979936,48489077948161, %U A130648 842173637012896,15359492773456129,316965131969908072,6368424993521096961,135098381153771956952,2980219360336428021505 %N A130648 Number of degree-n permutations without even cycles and such that number of cycles of size 2k-1 is odd (or zero) for every k. %H A130648 Alois P. Heinz, <a href="/A130648/b130648.txt">Table of n, a(n) for n = 0..450</a> %F A130648 E.g.f.: Product_{k>0} (1+sinh(x^(2*k-1)/(2*k-1))). %e A130648 a(3)=3 because we have (1)(2)(3), (123) and (132). %p A130648 g:=product(1+sinh(x^(2*k-1)/(2*k-1)),k=1..30): gser:=series(g,x=0,27): seq(factorial(n)*coeff(gser,x,n),n=0..24); # _Emeric Deutsch_, Aug 24 2007 %p A130648 # second Maple program: %p A130648 with(combinat): %p A130648 b:= proc(n, i) option remember; `if`(n=0, 1, `if`(i<1, 0, add( %p A130648 `if`(j=0 or irem(i, 2)=1 and irem(j, 2)=1, multinomial(n, %p A130648 n-i*j, i$j)*(i-1)!^j/j!*b(n-i*j, i-1), 0), j=0..n/i))) %p A130648 end: %p A130648 a:= n-> b(n$2): %p A130648 seq(a(n), n=0..30); # _Alois P. Heinz_, Mar 09 2015 %t A130648 multinomial[n_, k_] := n!/Times @@ (k!); b[n_, i_] := b[n, i] = If[n == 0, 1, If[i < 1, 0, Sum[If[j == 0 || Mod[i, 2] == 1 && Mod[j, 2] == 1, multinomial[n, Join[{n-i*j}, Array[i&, j]]]*(i-1)!^j/j!*b[n-i*j, i-1], 0], {j, 0, n/i}]]]; a[n_] := b[n, n]; Table[a[n], {n, 0, 30}] (* _Jean-François Alcover_, Feb 08 2017, after _Alois P. Heinz_ *) %Y A130648 Cf. A060307. %K A130648 easy,nonn %O A130648 0,4 %A A130648 _Vladeta Jovovic_, Aug 11 2007 %E A130648 More terms from _Emeric Deutsch_, Aug 24 2007