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-2 of 2 results.

A334282 Number of properly colored labeled graphs on n nodes so that the color function is surjective onto {c_1,c_2,...,c_k} for some k, 1<=k<=n.

Original entry on oeis.org

1, 1, 5, 73, 2849, 277921, 65067905, 35545840513, 44384640206849, 124697899490480641, 778525887500557625345, 10693248499002776513697793, 320453350845793018626300755969, 20807125028666778079876193487790081, 2909872870574162514727072641529432735745
Offset: 0

Views

Author

Geoffrey Critzer, Apr 21 2020

Keywords

Comments

Also 1 together with the row sums of A046860.
A binary relation R on [n] is periodic iff there is a d>=2 such that R^d = R. Let A be the class of non-arcless strongly connected periodic relations (A000629). Then a(n) is the number of binary relations on [n] whose strongly connected components are in A. - Geoffrey Critzer, Dec 12 2023

Crossrefs

Programs

  • Maple
    b:= proc(n, k) option remember; `if`([n, k]=[0$2], 1,
          add(binomial(n, r)*2^(r*(n-r))*b(r, k-1), r=0..n-1))
        end:
    a:= n-> add(b(n,k), k=0..n):
    seq(a(n), n=0..15);  # Alois P. Heinz, Apr 21 2020
  • Mathematica
    nn = 15; e2[x_] := Sum[x^n/(n! 2^Binomial[n, 2]), {n, 0, nn}];
    Table[n! 2^Binomial[n, 2], {n, 0, nn}] CoefficientList[Series[1/(1 - (e2[x] - 1)), {x, 0, nn}], x]

Formula

Sum_{n>=0} a_n*x^n/(n!*2^C(n,2)) = 1/(2-Sum_{n>=0} x^n/(n!*2^C(n,2))).

A361583 Number of digraphs on n unlabeled nodes whose strongly connected components are complete digraphs.

Original entry on oeis.org

1, 1, 3, 12, 88, 1217, 34672, 2039085, 246005109, 60296886108, 29828186693218, 29663937774464786, 59172529527454608139, 236453014376786629601848, 1891427400988740573006253862, 30274661556583530830890359188257, 969429810937979825934973090455224882
Offset: 0

Views

Author

Andrew Howroyd, Mar 16 2023

Keywords

Crossrefs

The labeled version is A361560.

Programs

Showing 1-2 of 2 results.