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.

A003035 Maximal number of 3-tree rows in n-tree orchard problem.

Original entry on oeis.org

0, 0, 1, 1, 2, 4, 6, 7, 10, 12, 16, 19, 22, 26
Offset: 1

Views

Author

Keywords

Comments

It is known that a(15) is 31 or 32, a(16)=37 and a(17) is 40, 41 or 42. - N. J. A. Sloane, Feb 11 2013

References

  • P. Brass et al., Research Problems in Discrete Geometry, Springer, 2005.
  • S. A. Burr, in The Mathematical Gardner, Ed. D. A. Klarner, p. 94, Wadsworth, 1981.
  • S. A. Burr, B. Grünbaum and N. J. A. Sloane, The Orchard Problem, Geometriae Dedicata, 2 (1974), 397-424.
  • Jean-Paul Delahaye, Des points qui s'alignent... ou pas, "Logique et calcul" column, "Pour la science", June 2021.
  • H. E. Dudeney, Amusements in Mathematics, Nelson, London, 1917, page 56.
  • Paul Erdos and George Purdy. Extremal problems in geometry, Chapter 17, pages 809-874 in R. L. Graham et al., eds., Handbook of Combinatorics, 2 vols., MIT Press, 1995. See Section 3.7.
  • M. Gardner, Time Travel and Other Mathematical Bewilderments. Freeman, NY, 1988, Chap. 22.
  • B. Grünbaum, Arrangements and Spreads. American Mathematical Society, Providence, RI, 1972, p. 22.
  • John Jackson, Rational Amusements for Winter Evenings, London, 1821.
  • F. Levi, Geometrische Konfigurationen, Hirzel, Leipzig, 1929.
  • N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

Crossrefs

Cf. A006065 (4 trees/row), A008997 (5 trees per row), A058212.

Extensions

13 and 14 trees result from Zhao Hui Du, Nov 20 2008
Replaced my old picture with link to my write-up. - Ed Pegg Jr, Feb 02 2018

A008997 Orchard problem with 5 trees in a row (may not have all been proved optimal).

Original entry on oeis.org

0, 0, 0, 0, 1, 1, 1, 1, 2, 2, 2, 3, 3, 4, 6, 6, 7, 9, 10, 11
Offset: 1

Views

Author

Keywords

Comments

Berloquin shows that a(21) >= 12.

References

  • S. A. Burr, B. Grünbaum and N. J. A. Sloane, The Orchard Problem, Geometriae Dedicata, 2 (1974), 397-424.
  • M. Gardner, Time Travel and Other Mathematical Bewilderments. Freeman, NY, 1988, Chap. 22.

Crossrefs

A172992 Maximal number of 4-tree rows in n-tree orchard problem in which the tree coordinates are integers.

Original entry on oeis.org

0, 0, 0, 1, 1, 1, 2, 2, 3, 5, 6, 7, 9, 10, 12, 14, 15, 17, 20, 23, 24, 26, 28, 30, 32, 34, 36, 39, 41, 44, 46, 48, 50, 52, 54, 57, 59, 62, 64, 67, 69, 72, 75, 78, 80, 83, 86, 89, 91, 94, 97, 100, 103, 106, 109, 112, 116, 120, 123, 126
Offset: 1

Views

Author

Zhao Hui Du, Feb 07 2010

Keywords

Comments

From Dmitry Kamenetsky, Feb 23 2012: (Start)
At the end of 2011 there was a 3-month programming competition (http://infinitesearchspace.dyndns.org/orchardplanting) for this problem for n in the range [11,60]. Later there was an unofficial contest (http://infinitesearchspace.dyndns.org/content/orchard-mini-contest) for finding optimal solutions that can be placed on the smallest possible grids.
The terms in this sequences are the best known solutions to date and they may not be optimal.
Any solution that can be represented with integer coordinates can also be represented with real-valued coordinates, hence A172992(n)<=A006065(n). It is believed (but not proved) that some real-valued solutions cannot be represented by integer-valued solutions. For example A172992(16)=14, but A006065(16)=15. (End)

Examples

			It is possible to place 10 points on an integer grid such that there are 5 straight lines with exactly 4 points lying on each line. Hence a(10) is 5. - _Dmitry Kamenetsky_, Feb 23 2012 (see the illustration by _Hugo Pfoertner_!)
		

Crossrefs

A006065 is the same problem, but with real-valued tree coordinates.

Extensions

More terms added by Dmitry Kamenetsky, Feb 23 2012

A273916 The Bingo-4 problem: minimal number of stones that must be placed on an infinite square grid to produce n groups of exactly 4 stones each. Groups consist of adjacent stones in a horizontal, vertical or diagonal line.

Original entry on oeis.org

0, 4, 7, 9, 11, 12, 12, 14, 15, 16, 16, 18, 19, 20, 22, 24
Offset: 0

Views

Author

Keywords

Comments

You are permitted to put 5 or more adjacent stones in a line, but cannot count them as a group.
Each pair of stones has at most one group that counts going through them. - David A. Corneth, Aug 01 2016
a(n) >= n and a(n+m) <= a(n) + a(m), e.g., a(16) <= a(10) + a(6) = 28. Placing stones in a 4 X k rectangular array shows that a(3k) <= 4(k+2). Fekete's subadditive lemma shows that 1 <= lim_{n->oo} a(n)/n <= 4/3 exists. - Chai Wah Wu, Jul 31 2016
Limit_{n->oo} a(n)/n = 1. See arXiv link. - Chai Wah Wu, Aug 25 2016

Examples

			From _M. F. Hasler_, Jul 30 2016: (Start)
One can get n=3 groups using a(3) = 9 stones (O) as follows:
   O O O O     The 3 groups are:
   . O O .     (1) the first line,
   . O . .     (2) the second column,
   O O . .     (3) the antidiagonal.
See the link for more examples. (End)
		

Crossrefs

See also the 4-trees-in-a-row orchard problem, A006065.

Extensions

Edited by N. J. A. Sloane, Jul 29 2016

A337747 Maximal number of 4-point circles passing through n points on a plane.

Original entry on oeis.org

0, 0, 0, 1, 1, 3, 6, 12, 14, 22, 30, 45
Offset: 1

Views

Author

Dmitry Kamenetsky, Sep 17 2020

Keywords

Comments

This is a variant of the orchard-planting problem that uses circles instead of straight lines.
The maximal number of 3-point circles passing through n points on a plane is binomial(n,3). Given an arrangement of n points in general position, any choice of three points defines a circle. - Peter Kagey, Oct 05 2020
Paul Panzer provides upper and lower bounds:
a(n) <= floor(n*(n-1)*(n-2)/24).
a(n) >= 2 + n*((n-2)*(n-2) + 4)/32 for n == 0 (mod 4) and n >= 8.
a(n) >= 2 + (n-1)*((n-1)*(n-5) + 16)/32 for n == 1 (mod 4) and n >= 9.
a(n) >= 2 + n*(n-2)*(n-2)/32 for n == 2 (mod 4) and n >= 10.
a(n) >= 2 + (n-1)*((n-3)*(n-3) + 16)/32 for n == 3 (mod 4) and n >= 11.
It seems that a(n) = n*((n-2)*(n-2) + 4)/32 + 2*A008610(n/2-4) if n == 0 (mod 4) and n >= 8. - Zhao Hui Du, Dec 14 2022
The number of 4-point circles passing through n points (2*cos(t_k), sin(t_k)) where t_k = (2k-1)*Pi/n, k=1,2,...,n is A008610(n-4), so A337747(n) >= A008610(n-4), so A337747(n) ~ n^3/24 for sufficiently large n. - Zhao Hui Du, Dec 15 2022

Examples

			See examples in links.
		

Crossrefs

Cf. A003035 (the original orchard problem), A006065.

Extensions

a(11) from Zhao Hui Du, Nov 22 2022
a(12) from Zhao Hui Du, Dec 01 2022

A172993 Maximal number of 4-tree rows in n-tree orchard problem in which the coordinates of trees may be complex numbers.

Original entry on oeis.org

0, 0, 0, 1, 1, 1, 2, 2, 3, 5, 6, 9, 9, 11, 13, 15, 17, 18, 20, 23
Offset: 1

Views

Author

Zhao Hui Du, Feb 07 2010

Keywords

Examples

			a(12)=9: Such as 12 trees in 9 rows: example for 12 trees with 9 rows: ABCD,AEFG,AHIJ,BEHK,BFIL,CEJL,CGIK,DFJK,DGHL. Let t^2+t+1=0, coordinate in projective plane: A[0:1:0], B[1:0:0], C[1:1+t:0], D[1:t:0], E(0,0), F(0,1), G(0,-t), H(1,0), I(1,1), J(1,t+1), K(1+t,0), L(-t,1).
		

Crossrefs

Cf. A006065.

Extensions

a(12) corrected by Zhao Hui Du, Oct 30 2019
Showing 1-6 of 6 results.