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.

Showing 1-4 of 4 results.

A216078 Number of horizontal and antidiagonal neighbor colorings of the odd squares of an n X 2 array with new integer colors introduced in row major order.

Original entry on oeis.org

1, 1, 3, 7, 27, 87, 409, 1657, 9089, 43833, 272947, 1515903, 10515147, 65766991, 501178937, 3473600465, 28773452321, 218310229201, 1949230218691, 16035686850327, 153281759047387, 1356791248984295, 13806215066685433, 130660110400259849, 1408621900803060705
Offset: 1

Views

Author

R. H. Hardin, Sep 01 2012

Keywords

Comments

Number of vertex covers and independent vertex sets of the n-1 X n-1 white bishops graph. Equivalently, the number of ways to place any number of non-attacking bishops on the white squares of an n-1 X n-1 board. - Andrew Howroyd, May 08 2017
Number of pairs of partitions (A<=B) of [n-1] such that the nontrivial blocks of A are of type {k,n-1-k} if n is even, and of type {k,n-k} if n is odd. - Francesca Aicardi, May 28 2022

Examples

			Some solutions for n = 5:
  x 0   x 0   x 0   x 0   x 0   x 0   x 0   x 0   x 0   x 0
  1 x   1 x   1 x   1 x   1 x   1 x   1 x   1 x   1 x   1 x
  x 2   x 0   x 0   x 2   x 0   x 1   x 1   x 2   x 2   x 1
  0 x   2 x   1 x   3 x   1 x   0 x   2 x   3 x   0 x   0 x
  x 3   x 1   x 2   x 2   x 0   x 1   x 1   x 1   x 2   x 0
There are 4 white squares on a 3 X 3 board. There is 1 way to place no non-attacking bishops, 4 ways to place 1 and 2 ways to place 2 so a(4) = 1 + 4 + 2 = 7. - _Andrew Howroyd_, Jun 06 2017
		

Crossrefs

Column 2 of A216084.
Row sums of A274106(n-1).

Programs

  • Maple
    a:= n-> (m-> add(binomial(m, k)*combinat[bell](m+k+e)
               , k=0..m))(iquo(n-1, 2, 'e')):
    seq(a(n), n=1..26);  # Alois P. Heinz, Oct 03 2022
  • Mathematica
    a[n_] := Module[{m, e}, {m, e} = QuotientRemainder[n - 1, 2];
       Sum[Binomial[m, k]*BellB[m + k + e], {k, 0, m}]];
    Table[a[n], {n, 1, 40}] (* Jean-François Alcover, Jul 25 2022, after Francesca Aicardi *)

Formula

a(n) = Sum_{k=0..m} binomial(m, k)*Bell(m+k+e), with m = floor((n-1)/2), e = (n+1) mod 2 and where Bell(n) is the Bell exponential number A000110(n). - Francesca Aicardi, May 28 2022
From Vaclav Kotesovec, Jul 29 2022: (Start)
a(2*k) = A020556(k).
a(2*k+1) = A094577(k). (End)

A286422 Number of matchings in the n X n black bishop graph.

Original entry on oeis.org

2, 12, 130, 9492, 1166928, 1431128744, 2907639077764, 76670800431934272, 3341096345926174809912, 2311650738313947870105792416, 2645105778378736719464340469683304, 56641723029988800376624313271476598959936
Offset: 2

Views

Author

Andrew Howroyd, May 08 2017

Keywords

Comments

Matchings are not necessarily perfect matchings.
C# software that can be used to compute this sequence can be found in A270228.

Crossrefs

Cf. A286423, A287248, A270228, A216078 (independent vertex sets), A234603 (cycles).

A287248 Number of matchings in the n X n bishop graph.

Original entry on oeis.org

1, 4, 84, 16900, 39932844, 1361720957184, 774585118899294568, 8454365006540284439239696, 1984702974673190711327564424138048, 11162924792761237570313905721795529333447744, 1649914801339506800304019030963996680128410488784164960, 6996584578812582654135225585307693014250183123864863361126056356416, 919794116459365136444247186352581193250325236478988411540394596132809895149151936
Offset: 1

Views

Author

Eric W. Weisstein, May 22 2017

Keywords

Crossrefs

Formula

a(n) = A286422(n) * A286423(n). - Andrew Howroyd, May 23 2017

A297490 Number of maximal matchings in the n X n white bishop graph.

Original entry on oeis.org

1, 2, 30, 568, 69136, 14222976, 27406992000, 90368686135296, 3472530332565934080, 231339455371699944947712, 217930756388573091682145009664
Offset: 2

Views

Author

Eric W. Weisstein, Dec 30 2017

Keywords

Crossrefs

Extensions

a(7)-a(12) from Andrew Howroyd, Dec 30 2017
Offset corrected by Pontus von Brömssen, Nov 22 2020
Showing 1-4 of 4 results.