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.

A261187 a(n) = (2^(n-1))!*y(n) where y(n)=1/2*(y(n-1))^2+1 for n>=2 and y(1)=1.

Original entry on oeis.org

1, 3, 51, 131355, 131953155208875, 5496027066067360087228913484456796875, 27805296606704951937976342299927372748633425216234990144120838935506416477839670037841796875
Offset: 1

Views

Author

Alexander Karpov, Aug 11 2015

Keywords

Comments

a(n) is also the number of knockout tournament seedings that satisfy the symmetry property.

Crossrefs

Cf. A067667 (number of seedings).

Programs

  • Mathematica
    Table[(2^(n-1))!*FoldList[(1/2)*(#1)^2+1&,1,Range[2,7]][[n]],{n,1,7}] (* Ivan N. Ianakiev, Aug 25 2015 *)