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.

A367254 a(n) = binomial(2*n - 1, n - 1)*(2*n)^n.

Original entry on oeis.org

1, 2, 48, 2160, 143360, 12600000, 1379524608, 180889572864, 27638114549760, 4822114348846080, 945950720000000000, 206098414000597966848, 49378358320648503164928, 12902739286521391316172800, 3651796443284936332620595200, 1112883434275320000000000000000
Offset: 0

Views

Author

Peter Luschny, Nov 11 2023

Keywords

Crossrefs

Cf. A137452.

Programs

  • Maple
    a := n -> binomial(2*n - 1, n - 1)*(2*n)^n;
    seq(a(n), n = 0..15);
  • Mathematica
    A367254[n_]:=If[n==0,1,Binomial[2n-1,n-1](2n)^n];
    Array[A367254,20,0] (* Paolo Xausa, Dec 01 2023 *)

Formula

a(n) = abs(A137452(2*n, n)).