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.

A353447 a(n) is the number of tetrapods standing on the four edges of an n X n grid, so that no two feet are the same distance apart and no foot is on a corner. Tetrapods with congruent footprints are counted only once.

Original entry on oeis.org

0, 0, 1, 11, 40, 105, 190, 379, 616, 987, 1426, 2139, 2964, 4130, 5403, 7180, 9155, 11716, 14458, 18092, 22037, 26808, 31793, 38343, 45060, 53184, 61613, 71878, 82466, 95368, 108195, 123790, 140040, 158457, 177405, 200020, 223039, 248769, 275214, 306411, 337645
Offset: 3

Views

Author

Rainer Rosenthal, Apr 20 2022

Keywords

Comments

If we name the tetrapod's footprints "mini-frame", we can say that mini-frames span their grid, i.e., there is no smaller grid for them. Every corner-less set of points with distinct distances in a smallest possible n X n grid contains at least one mini-frame.

Examples

			  .
     . C .           a(3) = 0              . . . C .
     D . B   <===  since AB = CD           . . . . .
     . A .         is forbidden            . . . . B
                                           . . . . .
                        . C . .            D . . . .
      a(4) = 0  ===>    ? . . .            . A . . .
    (there is no        ? . . B         ______________
     space for D)       . A . .            a(5) = 1
                                     (No other solutions)
  .
    . . . . .           The tetrapod has 6 distinct
    D . . . .           squared distances 4, 5, 10,
    . . . . C   <=====  13, 17, 18, but it uses only
    . . . . .           three edges of the 5 X 5 grid.
    . A . B .           (Not allowed.)
  .
		

Crossrefs

The general case without excluding the corners of the grid rectangle is covered in A354700 and A354701.

Extensions

a(23) and beyond from Hugo Pfoertner, Apr 20 2022

A335232 Number of largest subsets of the set of points in an n X n square grid, such that no two points are at the same distance.

Original entry on oeis.org

1, 6, 40, 184, 280, 16, 8, 26800, 4376, 416, 16, 27488, 536, 587640, 10192, 128
Offset: 1

Views

Author

Ehit Dinesh Agarwal, May 27 2020

Keywords

Crossrefs

Size of largest subset in A271490.
Cf. A351699 (generalization to grid rectangles, counting congruent configurations only once).

Extensions

a(14)-a(16) from Fausto A. C. Cariboni, Jul 03 2022

A351700 T(n,k) is the maximum number of points that can be chosen from a rectangle of n X k lattice points such that their mutual distances are distinct, where T(n,k) is a triangle read by rows, 1 <= k <= n.

Original entry on oeis.org

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

Views

Author

Hugo Pfoertner, Mar 05 2022

Keywords

Examples

			The triangle begins:
  1
  2  2
  2  3  3
  3  4  4  4
  3  4  4  5  5
  3  4  5  5  5  6
  4  5  5  6  6  6  7
  4  5  5  6  7  7  7  7
  4  5  6  6  7  7  8  8  8
  4  6  6  7  7  8  8  8  9  9
  4  6  6  7  8  8  8  9  9  9 10
  5  6  7  7  8  9  9  9  9 10 10 10
  5  6  7  8  8  9  9 10 10 10 10 11 11
		

Crossrefs

First occurrence of n in first column: A227590.
Main diagonal: A271490.

Extensions

T(13,2)=a(80) and T(13,8)=a(86) corrected by Fausto A. C. Cariboni, Jul 10 2022

A351701 Smallest maximum of the distinct squared distances between any two of the points taken over all possible solutions, written as triangle T(n,k) with problem size and number of points given by the corresponding A351700.

Original entry on oeis.org

0, 1, 2, 4, 5, 8, 9, 10, 10, 13, 16, 16, 16, 20, 20, 25, 25, 26, 25, 25, 41, 36, 36, 36, 40, 37, 37, 72, 49, 49, 49, 49, 58, 50, 50, 52, 64, 64, 64, 64, 64, 64, 73, 80, 74, 81, 81, 81, 81, 81, 90, 82, 82, 100, 113, 100, 100, 100, 100, 109, 100, 100, 109, 106, 104, 149
Offset: 1

Views

Author

Hugo Pfoertner, Apr 08 2022

Keywords

Comments

This sequence considers only solutions that do not fit into a smaller grid, as in A351699. - Fausto A. C. Cariboni, Nov 08 2022

Examples

			Correspondence between the triangle of A351700 and T(n,k), with terms of this sequence shown delimited by parenthesis.
   n\k 1   2   3   4   5   6   7   8   9  10  11
   1:  1   |   |   |   |   |   |   |   |   |   |
     ( 0)  |   |   |   |   |   |   |   |   |   |
   2:  2   2   |   |   |   |   |   |   |   |   |
     ( 1   2)  |   |   |   |   |   |   |   |   |
   3:  2   3   3   |   |   |   |   |   |   |   |
     ( 4   5   8)  |   |   |   |   |   |   |   |
   4:  3   4   4   4   |   |   |   |   |   |   |
     ( 9  10  10  13)  |   |   |   |   |   |   |
   5:  3   4   4   5   5   |   |   |   |   |   |
     (16  16  16  20  20)  |   |   |   |   |   |
   6:  3   4   5   5   5   6   |   |   |   |   |
     (25  25  26  25  25  41)  |   |   |   |   |
   7:  4   5   5   6   6   6   7   |   |   |   |
     (36  36  36  40  37  37  72)  |   |   |   |
   8:  4   5   5   6   7   7   7   7   |   |   |
     (49  49  49  49  58  50  50  52)  |   |   |
   9:  4   5   6   6   7   7   8   8   8   |   |
     (64  64  64  64  64  64  73  80  74)  |   |
  10:  4   6   6   7   7   8   8   8   9   9   |
     (81  81  81  81  81  90  82  82 100 113)  |
  11:  4   6   6   7   8   8   8   9   9   9  10
    (100 100 100 100 109 100 100 109 106 104 149)
.
T(6,6) = a(21) = 41:
There are only 2 essentially different point configurations of A351700(21) = 6 selected grid points:
[(0,0), (1,0), (2,5), (3,1), (5,3), (5,5)] with the corresponding list of squared distances {1, 4, 5, 8, 9, 10, 13, 17, 20, 25, 26, 29, 34, 41, 50},
and [(0,0),( 0, 3),( 0, 5),( 3, 2),( 4, 1),( 5, 1)] with squared distances
{1, 2, 4, 5, 9, 10, 13, 17, 18, 20, 25, 26, 29, 32, 41}.
The maximum of squared distances in the second configuration between the points (0,5) and (5,1) is 41, whereas the squared distance in the first configuration is 50, made by the corner points (0,0) and (5,5). Thus a(21) = min(41,50) = 41.
.
T(11,11) = a(66) = 149. The two possible configurations with 10 points on the quadratic grid with 11 X 11 points are given in the comments of A193838 or A271490. The first configuration uses the two corner points (0,0) and (10,10) with squared distance 200, whereas in the other configuration a squared distance of 149 between the points (0,0) and (7,10) is maximal. Thus a(66) = min(200,149) = 149.
		

Crossrefs

Extensions

a(55)=T(10,10) corrected by Hugo Pfoertner, Nov 06 2022
Showing 1-4 of 4 results.