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.

A000779 a(n) = 2*(2n-1)!!-(n-1)!*2^(n-1), where (2n-1)!! is A001147(n).

Original entry on oeis.org

1, 4, 22, 162, 1506, 16950, 224190, 3408930, 58596930, 1123663590, 23782729950, 550718680050, 13849716607650, 375904338960150, 10952237584237950, 340947694234397250, 11294123783425733250, 396665528378000631750
Offset: 1

Views

Author

Keywords

Crossrefs

Cf. A001147.

Programs

  • Magma
    A001147:=func< n | n eq 0 select 1 else &*[ k: k in [1..2*n-1 by 2] ] >; [ 2*A001147(n)-Factorial(n-1)*2^(n-1): n in [1..20] ]; // Klaus Brockhaus, Jun 22 2011
  • Maple
    seq(2*doublefactorial(2*n-1)-(n-1)!*2^(n-1), n=1..18); # Nathaniel Johnston, Jun 23 2011
  • Mathematica
    Table[2*(2n-1)!! - (n-1)!*2^(n-1), {n, 1, 20}] (* Jean-François Alcover, Feb 11 2016 *)

Extensions

More terms from Sean A. Irvine, Jun 13 2011