cp's OEIS Frontend

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.

Showing 1-2 of 2 results.

A060349 a(n) = n^(n+2)*(n^2 - 1)*(n+3)*(n+2)*(5*n - 7)/5760.

Original entry on oeis.org

81, 5824, 328125, 16901136, 847425747, 42630905856, 2186213819427, 115293750000000, 6283133610195442, 354769407810994176, 20781472563720847342, 1263485180096661430272, 79727340621643066406250, 5219469342167970210643968, 354305349685394263423480746
Offset: 3

Views

Author

Noam Katz (noamkj(AT)hotmail.com), Mar 30 2001

Keywords

Comments

For n >= 3, a(n) is the number of nonequivalent primitive meromorphic functions with one pole of order n on a Riemann surface of genus 2.

References

  • B. Shapiro, M. Shapiro and A. Vainshtein, Ramified coverings of S^2 with one degenerate branching point and enumeration of edge-ordered graphs, Amer. Math. Soc. Transl., Vol. 180 (1997), pp. 219-227.

Crossrefs

Programs

  • Mathematica
    Table[(n^(n+2) (n^2-1)(n+3)(n+2)(5n-7))/5760,{n,3,20}] (* Harvey P. Dale, Jan 10 2013 *)
  • PARI
    { for (n=3, 200, write("b060349.txt", n, " ", n^(n + 2)*(n^2 - 1)*(n + 3)*(n + 2)*(5*n - 7)/5760); ) } \\ Harry J. Smith, Jul 04 2009

A060603 Number of ways of expressing an n-cycle in the symmetric group S_n as a product of n+1 transpositions.

Original entry on oeis.org

0, 1, 27, 640, 15625, 408240, 11529602, 352321536, 11622614670, 412500000000, 15692141883605, 637501182050304, 27561634699895023, 1263990776407224320, 61305144653320312500, 3135946492530623774720, 168757013424812699892108
Offset: 1

Views

Author

Dan Fux (dan.fux(AT)OpenGaia.com or danfux(AT)OpenGaia.com), Apr 13 2001

Keywords

Comments

For n >= 3, a(n) = A060348(n)*n. The number of ways of expressing an n-cycle in the symmetric group S_n as a product of n-1 transpositions was given in the comment to A000272.

Examples

			a(2) = 1 because in S_2 the only way to write (12) as a product of 3 transpositions is (12) = (12)(12)(12).
		

Crossrefs

Programs

  • Maple
    for n from 1 to 30 do printf(`%d,`,1/24 * (n^2 - 1) * n^(n + 1)) od:
  • PARI
    a(n)={(n^2 - 1) * n^(n + 1)/24} \\ Harry J. Smith, Jul 07 2009

Formula

a(n) = (1/24) * (n^2 - 1) * n^(n + 1).

Extensions

More terms from James Sellers, Apr 13 2001
Showing 1-2 of 2 results.