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.

A370002 Maximum number of connected induced subgraphs, up to isomorphism, of an n-vertex graph.

Original entry on oeis.org

1, 2, 3, 5, 8, 16, 31, 62, 129
Offset: 1

Views

Author

Pontus von Brömssen, Feb 08 2024

Keywords

Comments

The null subgraph is not considered to be connected.
Remarkably, a(n) = A308852(n) for all n <= 9. This cannot go on forever, however, because we have the trivial bound a(n) <= 2^n, whereas A308852(18) = 337414 > 2^18. (The upper bound below shows that already a(14) <= 7472 < A308852(14) = 8057.)

Examples

			The table below shows all optimal graphs for n <= 9. For n >= 10, a lower bound obtained by generating several thousands of random graphs is shown, together with a graph attaining this bound. If there is no known simple description or name of the optimal graphs, they are shown in the graph6 format.
.
   n       a(n)   optimal graphs
  ------------------------------
   1         1    K_1
   2         2    K_2
   3         3    K_3, P_3 (path)
   4         5    paw graph, diamond graph (K_{1,1,2})
   5         8    dart graph, kite graph, house graph, house X-graph,
                  fan graph F_{1,4}, complement of P_2 + P_3
   6        16    complement of the initial part of the Rado graph using
                  BIT predicate (the complement has House of Graphs id 25152),
                  "EEno"
   7        31    "FCvdw", "FCvfw", "FCz^g", "FEjvw"
   8        62    "GCZmp{", "GCrbU{" (House of Graphs id 36157)
   9       129    "HCpfbmn"
  10    >= 276    "INnAnDRUG" (upper bound: 319)
  11    >= 595    "JonellBani_" (upper bound: 705)
  12   >= 1304    "KonellBanibD" (upper bound: 1729)
.
For n = 4, the paw graph has 5 connected induced subgraphs: K_1, K_2, K_3, P_3, and itself. The diamond graph also has 5 connected induced subgraphs, but no 4-vertex graph has more than 5, so a(4) = 5.
		

Crossrefs

Cf. A001349, A308852, A370001 (not necessarily connected subgraphs), A370003.

Formula

a(n) <= Sum_{k=1..n} min(A001349(k),binomial(n,k)).

A343491 Number of representations of n! as a sum of 3 tetrahedral numbers (A000292).

Original entry on oeis.org

1, 1, 1, 2, 2, 1, 2, 1, 3, 5, 2, 3, 6, 5, 8, 8, 7, 2, 7, 8, 3, 11, 2, 2
Offset: 1

Views

Author

Altug Alkan, Apr 17 2021

Keywords

Comments

Conjecture I: There are infinitely many n such that a(n) >= 1.
Conjecture II: Natural density of numbers n such that a(n) >= 1 is 1.
Conjecture III: Numbers n such that a(n) = 0 is a finite sequence.
Conjecture IV: a(n) >= 1 for all n.
See Links section for some solutions.

Examples

			a(4) = 2 because 4! = 0 + 4 + 20 = 4 + 10 + 10.
a(24) = 2 because 24! = f(11393630) + f(118661018) + f(127041924) = f(81298034) + f(61098204) + f(143537134) where f = A000292.
		

Crossrefs

Programs

  • Mathematica
    Table[Length[Solve[{i*(i + 1)*(i + 2) + j*(j + 1)*(j + 2) + k*(k + 1)*(k + 2) == 6*n!, i >= 0, j >= 0, k >= 0, i <= j, j <= k, k < (6*n!)^(1/3)}, Integers]], {n, 1, 10}] (* Vaclav Kotesovec, Apr 19 2021 *)
Showing 1-2 of 2 results.