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.

A002639 Numerators of expansion of Jacobi nome q in parameter m.

Original entry on oeis.org

0, 1, 1, 21, 31, 6257, 10293, 279025, 483127, 435506703, 776957575, 22417045555, 40784671953, 9569130097211, 17652604545791, 523910972020563, 976501268709949, 935823746406530603, 1758220447807291611
Offset: 0

Views

Author

Keywords

Examples

			q = 1/16*m + 1/32*m^2 + 21/1024*m^3 + 31/2048*m^4 + 6257/524288*m^5 + ...
		

References

  • Guide to Tables, Math. Tables Other Aids Computation, 3 (1948), Section III, p. 234.
  • N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A119349 (denominators), A002103 (where there are further references), A005797.

Programs

  • Maple
    A002639 := proc(n::integer)
        local z;
        # coeftayl(EllipticNome(z),z=0,n) ; # very slow
        taylor(EllipticNome(z),z=0,2*n+1) ;
        convert(%,polynom) ;
        coeff(%,z,2*n) ;
        numer(%) ;
    end proc:
    seq(A002639(n),n=0..10) ; # R. J. Mathar, Mar 26 2025
  • Mathematica
    Numerator[ CoefficientList[ Series[ EllipticNomeQ[m], {m, 0, 18}], m]] (* Jean-François Alcover, Sep 21 2011 *)
  • PARI
    {a(n) = if( n<1, 0, numerator( polcoeff( serreverse( x * prod(k=1, n, (1 + x^k)^(-1)^k, 1 +x * O(x^n))^8), n) / 4^n))}

Extensions

Edited by Michael Somos, Aug 09 2002