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

A250001 Number of arrangements of n circles in the affine plane.

Original entry on oeis.org

1, 1, 3, 14, 173, 16951
Offset: 0

Views

Author

Jon Wild, May 16 2014

Keywords

Comments

Two circles are either disjoint or meet in two points. Tangential contacts are not allowed. A point belongs to exactly one or two circles. Three circles may not meet at a point. The circles may have different radii.
This is in the affine plane, rather than the projective plane.
Two arrangements are considered the same if one can be continuously changed to the other while keeping all circles circular (although the radii may be continuously changed), without changing the multiplicity of intersection points, and without a circle passing through an intersection point. Turning the whole configuration over is allowed.
Several variations are possible:
- straight lines instead of circles (see A241600).
- straight lines in general position (see A090338).
- curved lines in general position (see A090339).
- allow circles to meet tangentially but without multiple intersection points (begins 1, 5, ...); more terms are needed.
- again use circles, but allow multiple intersection points (also begins 1, 5, ...); more terms are needed.
- use ellipses rather than circles.
- a question from Walter D. Wallis: what if the circles must all have the same radius?
a(1)-a(5) computed by Jon Wild.
a(n) >= A000081(n+1) - Benoit Jubin, Dec 21 2014. More precisely, there are A000081(n+1) ways to arrange n circles if no two of them meet. - N. J. A. Sloane, May 16 2017
From Daniel Forgues, Aug 08-09 2015: (Start)
A representation for the diagrams in a250001.jpg (in the same order):
a(1) = 1: {{2}};
a(2) = 3: {{2, 3}, {2, 4}, {4, 6}};
a(3) = 14: {{2, 4, 8}, {2, 3, 6}, {2, 3, 4}, {2, 3, 5}, {4, 6, 5},
{4, 6, 15}, {2, 6, 9}, {4, 6, 12}, {2, 8, 12}, {30, 42, 70},
{?, ?, ?}, {?, ?, ?}, {15, 21, 35}, {?, ?, ?}}.
In lexicographic order:
a(3) = 14: {{2, 3, 4}, {2, 3, 5}, {2, 3, 6}, {2, 4, 8}, {2, 6, 9},
{2, 8, 12}, {4, 6, 5}, {4, 6, 12}, {4, 6, 15}, {15, 21, 35},
{30, 42, 70}, {?, ?, ?}, {?, ?, ?}, {?, ?, ?}}.
The smallest integers greater than 1 are used for the representation:
(p_1)^(a_1)*...*(p_m)^(a_m), where
0 <= a_i <= n, for 1 <= i <= m;
(a_1)+...+(a_m) > 0.
Could the Venn diagram interpretation (of the k-wise, 1 <= k <= n, common divisors of k numbers from each subset) reveal a pattern?
Does this representation work for more complex diagrams? (End)
Once you get to n=5, geometric concerns mean that not all topologically-conceivable arrangements are actually circle-drawable. My program enumerated 16977 conceivable arrangements of 5 pseudo-circles, and Christopher Jones and I together have figured out how to show that 26 of these arrangements are not actually circle-drawable. So it seems that a(5) = 16951. This entry will be updated soon, and there will be a new sequence for the number of topologically-conceivable arrangements. - Jon Wild, Aug 25 2016 [The counts in this comment were amended by Jon Wild on Aug 30 2016. I apologize for taking so long to make the corrections here. - N. J. A. Sloane, Jun 11 2017]
a(n) <= 7*13^(binomial(n,3) + binomial(n,2) + 3n - 1) is a (loose) upper bound, see Reddit link. I believe XkF21WNJ's reply shaves off a factor of 13^3 from this bound for all n > 1. - Linus Hamilton, Apr 14 2019
A good upper bound for a(6) is given in sequence A288559, which counts the arrangements of pseudo-circles, i.e. the topologically conceivable arrangements mentioned above, which are not all necessarily realizable with true circles. The number of arrangements of 6 pseudo-circles was found by Andrii Shportko and Jon Wild to be 17,552,169. - Jon Wild, Jun 03 2025
In A288559, a(5) included 26 non-circularizable pseudocircle arrangements, which generated in turn 132,546 6-pseudocircle descendants. These descendants must be excluded from A250001, which means that a tighter upper bound for A250001(6) is 17,419,623. - Andrii Shportko, Jun 06 2025

Examples

			a(2) = 3, because two circles can either be next to each other, overlap with two intersection points, or one may be located within the other (of larger radius). (As per the first comment, the limiting case where they touch in one point is [somewhat arbitrarily] excluded. This would add two more independent configurations, where one touched the other "from inside" or "from outside".) - _M. F. Hasler_, May 03 2025
		

References

  • Jon Wild, Posting to Sequence Fans Mailing List, May 15 2014.

Crossrefs

Row sums of A261070.
Apart from first term, row sums of triangles A249752, A252158, A285996, A274776, A274777.
See A275923 and A275924 for the connected arrangements. See also A288554-A288568.
Cf. A132101 (one-dimensional analog).

Extensions

a(4) is 173, not 168. Corrected by Jon Wild, Aug 08 2015
A duplicate pair of configurations in an older file was spotted by Manfred Scheucher, Aug 13 2016. The pdf and svg files here are now correct.

A249752 Triangle read by rows: T(n,k) = number of arrangements of n circles in the affine plane having k outer circles.

Original entry on oeis.org

1, 1, 2, 3, 5, 6, 14, 52, 60, 47
Offset: 1

Views

Author

Omar E. Pol, Dec 14 2014

Keywords

Comments

Consider the arrangements of n circles described in A250001.
T(n,k) is the number of arrangements of n circles in the affine plane whose perimeters are formed with parts from k circles. - Omar E. Pol, Aug 09 2015
From Omar E. Pol, Jul 06 2016: (Start)
Observation 1: column 1 gives A250001, at least if 1<=n<=4.
Observation 2: sum of n-th row = T(n+1,1), at least if 1<=n<=3. (End)

Examples

			Triangle begins:
1;
1,   2;
3,   5,  6;
14, 52, 60, 47;
...
		

Crossrefs

Sum of n-th row = A250001(n).
Leading diagonal gives A274702.

Extensions

Corrected a(5)-a(6) and added a(7)-a(10) from Omar E. Pol, Oct 13 2015

A274776 Irregular triangle read by rows: T(n,k) = number of arrangements of n circles in the affine plane forming k regions, including the regions that do not belong to the circles.

Original entry on oeis.org

1, 0, 2, 1, 0, 0, 4, 4, 2, 0, 4, 0, 0, 0
Offset: 1

Views

Author

Omar E. Pol, Jul 06 2016

Keywords

Comments

Consider the arrangements of n circles described in A250001.
Note that the sum of the 4th row must be equal to A250001(4) = 173.

Examples

			Triangle begins:
1;
0, 2, 1;
0, 0, 4, 4, 2, 0, 4;
0, 0, 0, ...
...
For n = 3 and k = 5 there are 2 arrangements of 3 circles in the affine plane forming 5 regions, including the regions that do not belong to the circles, so T(3,5) = 2.
For n = 3 and k = 6 there are no arrangements of 3 circles in the affine plane forming 6 regions, including the regions that do not belong to the circles, so T(3,6) = 0.
Of course, there is a right triangle of all zeros starting from the second row.
		

Crossrefs

Sum of n-th row = A250001(n).
First differs from A274777 at a(10).

Formula

T(n,k) = A274818(n,k)/k.

A274777 Irregular triangle read by rows: T(n,k) = number of arrangements of n circles in the affine plane forming k regions, excluding the regions that do not belong to the circles.

Original entry on oeis.org

1, 0, 2, 1, 0, 0, 4, 4, 2, 1, 3, 0, 0, 0
Offset: 1

Views

Author

Omar E. Pol, Jul 06 2016

Keywords

Comments

In other words: not counting the regions between circles.
Consider the arrangements of n circles described in A250001.
Note that the sum of the 4th row must be equal to A250001(4) = 173.

Examples

			Triangle begins:
1;
0, 2, 1;
0, 0, 4, 4, 2, 1, 3;
0, 0, 0, ...
...
For n = 3 and k = 5 there are 2 arrangements of 3 circles in the affine plane forming 5 regions, excluding the regions that do not belong to the circles, so T(3,5) = 2.
For n = 3 and k = 6 there is only one arrangement of 3 circles in the affine plane forming 6 regions, excluding the regions that do not belong to the circles, so T(3,6) = 1.
Of course, there is a right triangle of all zeros starting from the second row.
		

Crossrefs

Sum of n-th row = A250001(n).
First differs from A274776 at a(10).

Formula

T(n,k) = A274819(n,k)/k.

A280786 Number of topologically distinct sets of n circles with one pair intersecting.

Original entry on oeis.org

1, 4, 15, 50, 162, 506, 1558, 4727, 14227, 42521, 126506, 374969, 1108476, 3269902, 9630631, 28328999, 83251569, 244471484, 717486860, 2104777227, 6172357873, 18096097750, 53044095421, 155464365080, 455601800970, 1335107222743, 3912330438784, 11464463809180, 33595343643160
Offset: 2

Views

Author

N. J. A. Sloane, Jan 20 2017

Keywords

Crossrefs

Row sums of A280787.
Column k=1 of A261070.

Programs

  • Maple
    A280786 := proc(N)
        if N < 2 then
            0;
        else
            add(A280787(N,f),f=1..N-1) ;
        end if;
    end proc:
    A280787 := proc(N,f)
        option remember ;
        local Npr,ct ;
        if f = N then
            return 0;
        elif f = N-1 then
            return 1;
        elif f = 1 then
            A280786(N-1)+A280788(N-2) ;
        else
            ct := 0 ;
            for Npr from 1 to N-1 do
                ct := ct+procname(Npr,1)*A033185(N-Npr,f-1) ;
            end do:
            ct ;
        end if;
    end proc:
    seq(A280786(n),n=2..30) ; # R. J. Mathar, Mar 06 2017
  • Mathematica
    a81[n_] := a81[n] = If[n <= 1, n, Sum[a81[n - j]*DivisorSum[j, #1*a81[#1] &], {j, n - 1}]/(n - 1)];
    A027852[n_] := Module[{dh = 0, np}, For[np = 0, np <= n, np++, dh = a81[np]*a81[n - np] + dh]; If[EvenQ[n], dh = a81[n/2] + dh]; dh/2];
    A280788[n_] := If[n == 0, 1, Sum[a81[np + 1]*A027852[n - np + 2], {np, 0, n}]];
    t[n_] := t[n] = Module[{d, j}, If[n == 1, 1, Sum[Sum[d*t[d], {d, Divisors[j]}]*t[n - j], {j, 1, n - 1}]/(n - 1)]];
    b[1, 1, 1] = 1;
    b[n_, i_, p_] := b[n, i, p] = If[p > n, 0, If[n == 0, 1, If[Min[i, p] < 1, 0, Sum[b[n - i*j, i - 1, p - j]*Binomial[t[i] + j - 1, j], {j, 0, Min[n/i, p]}]]]]; A033185[n_, k_] := b[n, n, k];
    A280786[n_] := If[n < 2, 0, Sum[A280787[n, f], {f, 1, n - 1}]];
    A280787[n_, f_] := A280787[n, f] = Module[{ct}, Which[f == n, Return[0], f == n - 1, Return[1], f == 1, Return[A280786[n - 1] + A280788[n - 2]], True, ct = 0; Do[ct += A280787[np, 1]*A033185[n - np, f - 1], {np, 1, n - 1}]]; ct];
    Table[A280786[n], {n, 2, 30}] (* Jean-François Alcover, Nov 23 2017, after R. J. Mathar and Alois P. Heinz *)

A285995 Number of arrangements of n circles in the affine plane such that at least two of the circles meet.

Original entry on oeis.org

0, 0, 1, 10, 164
Offset: 0

Views

Author

Omar E. Pol, May 17 2017

Keywords

Comments

A subset the arrangements of n circles described in A250001, which is the main entry for this sequence.
See also the comments related to A000081 from Benoit Jubin and N. J. A. Sloane in A250001.

Crossrefs

Row sums of A261070 except its column k = 0.

Formula

a(n) = A250001(n) - A000081(n+1).
Showing 1-6 of 6 results.