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.

A004936 Numerator of (binomial(2*n-2,n-1)/n!)^2.

Original entry on oeis.org

1, 1, 1, 25, 49, 49, 121, 20449, 20449, 5909761, 17631601, 17631601, 55190041, 55190041, 55190041, 46414824481, 154341336769, 154341336769, 427538329, 585299972401, 585299972401, 983889253606081, 3438962627443561, 3438962627443561, 7596668444022826249
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A000108, A005017 (denominators).

Programs

  • Magma
    [Numerator((Catalan(n-1)/Factorial(n-1))^2): n in [1..40]]; // G. C. Greubel, Sep 12 2023
    
  • Mathematica
    Numerator[Table[(Binomial[2n-2,n-1]/n!)^2,{n,30}]] (* Harvey P. Dale, May 30 2012 *)
  • PARI
    a(n) = numerator((binomial(2*n-2,n-1)/n!)^2); \\ Michel Marcus, Jul 14 2022
    
  • SageMath
    [numerator((catalan_number(n-1)/factorial(n-1))^2) for n in range(1,41)] # G. C. Greubel, Sep 12 2023

Formula

a(n) = numerator( (A000108(n-1)/(n-1)!)^2 ). - G. C. Greubel, Sep 12 2023