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.

A158817 a(n) = (binomial(2^n, 2^(n-1)) - binomial(2^(n-1), 2^(n-2)))/2^n.

Original entry on oeis.org

1, 8, 800, 18783360, 28634752192836096, 187118328452563147377366903401859072, 22533823529098462258163079522899558155141642796614195116180863201125539840
Offset: 2

Views

Author

Tanya Khovanova and Leonid Makar-Limanov, Mar 27 2009

Keywords

Crossrefs

Cf. A069954.

Programs

  • Mathematica
    Table[(Binomial[2^n, 2^(n-1)] -Binomial[2^(n-1), 2^(n-2)])/2^n, {n, 2, 12}]
  • Sage
    [( binomial(2^n, 2^(n-1)) - binomial(2^(n-1), 2^(n-2)) )/2^n for n in (2..12)] # G. C. Greubel, Dec 22 2021

Formula

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