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.

A032037 Doubles (index 2+) under "AIJ" (ordered, indistinct, labeled) transform.

Original entry on oeis.org

1, 2, 18, 264, 5400, 141840, 4551120, 172529280, 7545363840, 373944211200, 20711190931200, 1267784551756800, 84991791159475200, 6193091146059417600, 487361761916020992000, 41192820513212239872000, 3721763273059549605888000, 357950394802026289815552000
Offset: 1

Views

Author

Keywords

Programs

  • Mathematica
    a[1]=1; a[2]=2; a[n_] := a[n]=3(2n-3)a[n-1]-(n-1)(n-3)a[n-2]
  • PARI
    Vec(serlaplace(serreverse(x*(1-2*x)/(1-x) + O(x^20)))) \\ Andrew Howroyd, Sep 19 2018

Formula

a(n) = n!*A001003(n-1). - Vladeta Jovovic, Dec 06 2002
E.g.f.: series reversion of x*(1-2*x)/(1-x). - Andrew Howroyd, Sep 19 2018
Assuming offset = 0:
a(n) = Sum_{k=0..n} Sum{m=0..k} (-1)^(m + k) * binomial(n + k, n + m) * binomial(n + m - 1, m - 1) * (n + m)! / m!. - Peter Luschny, Sep 26 2022

Extensions

Terms a(17) and beyond from Andrew Howroyd, Sep 19 2018