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.

A072118 a(n) = (2*n)!/core(n!)^2/(n+1) where core(x) is the squarefree part of x.

Original entry on oeis.org

1, 2, 5, 224, 672, 2737152, 8895744, 474439680, 130660687872, 4513732853760000, 15798064988160000, 894413525483520000, 3194334019584000000, 27610545531676262400000, 8107146431738442547200000, 7569213421444268241715200000, 27753782545295650219622400000
Offset: 1

Views

Author

Benoit Cloitre, Jun 19 2002

Keywords

Crossrefs

Programs

  • Mathematica
    f[p_, e_] := p^Mod[e, 2]; a[1] = 1; a[n_] := (2*n)! / ((Times @@ f @@@ FactorInteger[n!])^2 * (n+1)); Array[a, 17] (* Amiram Eldar, May 01 2025 *)
  • PARI
    a(n) = (2*n)!/core(n!)^2/(n+1);