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.

Previous Showing 11-12 of 12 results.

A212271 Number of ways to place k non-attacking ferses on an n x n cylindrical chessboard, summed over all k >= 0.

Original entry on oeis.org

2, 9, 80, 1600, 79033, 8156736, 2055960192, 1108756350625, 1411080429618656, 3943472747846953216, 25425527581172360096017, 365481944233773616212640000, 11980566143208960475692367828480, 882106482533191605447029340350009049, 147314997388032765439791110273770608260928
Offset: 1

Views

Author

Vaclav Kotesovec, May 12 2012

Keywords

Comments

Fers is a leaper [1,1].

Crossrefs

Formula

Limit n ->infinity (a(n))^(1/n^2) is the hard square entropy constant A085850.

A182562 Number of ways to place k non-attacking semi-knights on an n x n chessboard, sum over all k>=0.

Original entry on oeis.org

2, 16, 288, 11664, 1458000, 506250000, 414720000000, 869730877440000, 5045702916833280000, 77297454895962562560000, 3017525202366485003182080000, 307389127582207654481154908160000, 83016370640108703579427655610531840000, 58770343311359208383258439665073059266560000
Offset: 1

Views

Author

Vaclav Kotesovec, May 05 2012

Keywords

Comments

Semi-knight is a semi-leaper [1,2]. Moves of a semi-knight are allowed only in [2,1] and [-2,-1]. See also semi-bishops (A187235).

Crossrefs

Programs

  • Mathematica
    Table[If[EvenQ[n],Fibonacci[n/2+2]^(n+2)*Product[Fibonacci[j+2]^4,{j,1,n/2-1}],Fibonacci[(n+1)/2+2]^((n+1)/2)*Fibonacci[(n-1)/2+2]^((n-1)/2)*Product[Fibonacci[j+2]^4,{j,1,(n-1)/2}]],{n,1,20}]

Formula

a(n) = F(n/2+2)^(n+2)*prod(j=1,n/2-1,F(j+2)^4) if n is even, F((n+1)/2+2)^((n+1)/2)*F((n-1)/2+2)^((n-1)/2)*prod(j=1,(n-1)/2,F(j+2)^4) if n is odd, where F(n) = A000045(n) is the n-th Fibonacci number.
a(n) is asymptotic to C^4*((1+sqrt(5))/2)^((n+2)*(n+4))/5^(3/2*(n+2)), where C=1.226742010720353244... is Fibonacci Factorial Constant, see A062073.
Previous Showing 11-12 of 12 results.