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.

A182063 Leading coefficient (divided by n+1) of the denominator of the factorization of a certain integral of a truncated series converging to the Riemann zeta function.

Original entry on oeis.org

1, 1, 1, 2, 1, 2, 1, 2, 3, 6, 1, 6, 3, 2, 3, 12, 2, 12, 3, 4, 6, 12, 1, 12, 6, 4, 3, 12, 2, 12, 3, 20, 30, 12, 5, 60, 30, 20, 3, 60, 10, 60, 15, 4, 30, 60, 5, 60, 6, 20, 15, 60, 10, 12, 15, 20, 30, 60, 1, 60, 30, 20, 15, 12, 10, 60, 15, 20, 6, 60, 5, 60, 30, 4, 15
Offset: 1

Views

Author

Stephen Crowley, Jun 19 2012

Keywords

Programs

  • Maple
    G:=N->1+N*(Li(N+1)-Li((N+1)^2))/(N+1)+sum(n/ln(n+1), n = 1 .. N-1); GFact:=proc (N) options remember, operator, arrow; return op(1, sort(convert(denom(factor(G(N))), list)))/(N+1) end proc; [seq(GFact(m), m = 1 .. 200)]